| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | metafmt-generic.rst | 18 .. _v4l2-meta-fmt-generic-8: 23 The V4L2_META_FMT_GENERIC_8 format is a plain 8-bit metadata format. This format 24 is used on CSI-2 for 8 bits per :term:`Data Unit`. 31 Each cell is one byte. "M" denotes a byte of metadata. 38 :widths: 12 8 8 8 8 41 - M\ :sub:`00` 42 - M\ :sub:`10` 43 - M\ :sub:`20` 44 - M\ :sub:`30` 46 - M\ :sub:`01` [all …]
|
| /linux/include/linux/isdn/ |
| H A D | capiutil.h | 18 #define CAPIMSG_BASELEN 8 19 #define CAPIMSG_U8(m, off) (m[off]) argument 20 #define CAPIMSG_U16(m, off) (m[off]|(m[(off)+1]<<8)) argument 21 #define CAPIMSG_U32(m, off) (m[off]|(m[(off)+1]<<8)|(m[(off)+2]<<16)|(m[(off)+3]<<24)) argument 22 #define CAPIMSG_LEN(m) CAPIMSG_U16(m,0) argument 23 #define CAPIMSG_APPID(m) CAPIMSG_U16(m,2) argument 24 #define CAPIMSG_COMMAND(m) CAPIMSG_U8(m,4) argument 25 #define CAPIMSG_SUBCOMMAND(m) CAPIMSG_U8(m,5) argument 26 #define CAPIMSG_CMD(m) (((m[4])<<8)|(m[5])) argument 27 #define CAPIMSG_MSGID(m) CAPIMSG_U16(m,6) argument [all …]
|
| /linux/net/can/ |
| H A D | proc.c | 68 static const char rx_list_name[][8] = { 188 static void can_print_rcvlist(struct seq_file *m, struct hlist_head *rx_list, in can_print_rcvlist() argument 195 " %-5s %08x %08x %pK %pK %8ld %s\n" : in can_print_rcvlist() 196 " %-5s %03x %08x %pK %pK %8ld %s\n"; in can_print_rcvlist() 198 seq_printf(m, fmt, DNAME(dev), r->can_id, r->mask, in can_print_rcvlist() 203 static void can_print_recv_banner(struct seq_file *m) in can_print_recv_banner() argument 210 …seq_puts(m, " device can_id can_mask function userdata matches ident\n"); in can_print_recv_banner() 212 seq_puts(m, " device can_id can_mask function userdata matches ident\n"); in can_print_recv_banner() 215 static int can_stats_proc_show(struct seq_file *m, void *v) in can_stats_proc_show() argument 217 struct net *net = m->private; in can_stats_proc_show() [all …]
|
| /linux/drivers/gpu/drm/amd/amdkfd/ |
| H A D | kfd_mqd_manager_vi.c | 51 struct vi_mqd *m; in update_cu_mask() local 60 m = get_mqd(mqd); in update_cu_mask() 61 m->compute_static_thread_mgmt_se0 = se_mask[0]; in update_cu_mask() 62 m->compute_static_thread_mgmt_se1 = se_mask[1]; in update_cu_mask() 63 m->compute_static_thread_mgmt_se2 = se_mask[2]; in update_cu_mask() 64 m->compute_static_thread_mgmt_se3 = se_mask[3]; in update_cu_mask() 67 m->compute_static_thread_mgmt_se0, in update_cu_mask() 68 m->compute_static_thread_mgmt_se1, in update_cu_mask() 69 m->compute_static_thread_mgmt_se2, in update_cu_mask() 70 m->compute_static_thread_mgmt_se3); in update_cu_mask() [all …]
|
| H A D | kfd_mqd_manager_v12.c | 47 struct v12_compute_mqd *m; in update_cu_mask() local 56 m = get_mqd(mqd); in update_cu_mask() 57 m->compute_static_thread_mgmt_se0 = se_mask[0]; in update_cu_mask() 58 m->compute_static_thread_mgmt_se1 = se_mask[1]; in update_cu_mask() 59 m->compute_static_thread_mgmt_se2 = se_mask[2]; in update_cu_mask() 60 m->compute_static_thread_mgmt_se3 = se_mask[3]; in update_cu_mask() 61 m->compute_static_thread_mgmt_se4 = se_mask[4]; in update_cu_mask() 62 m->compute_static_thread_mgmt_se5 = se_mask[5]; in update_cu_mask() 63 m->compute_static_thread_mgmt_se6 = se_mask[6]; in update_cu_mask() 64 m->compute_static_thread_mgmt_se7 = se_mask[7]; in update_cu_mask() [all …]
|
| H A D | kfd_mqd_manager_v10.c | 48 struct v10_compute_mqd *m; in update_cu_mask() local 57 m = get_mqd(mqd); in update_cu_mask() 58 m->compute_static_thread_mgmt_se0 = se_mask[0]; in update_cu_mask() 59 m->compute_static_thread_mgmt_se1 = se_mask[1]; in update_cu_mask() 60 m->compute_static_thread_mgmt_se2 = se_mask[2]; in update_cu_mask() 61 m->compute_static_thread_mgmt_se3 = se_mask[3]; in update_cu_mask() 64 m->compute_static_thread_mgmt_se0, in update_cu_mask() 65 m->compute_static_thread_mgmt_se1, in update_cu_mask() 66 m->compute_static_thread_mgmt_se2, in update_cu_mask() 67 m->compute_static_thread_mgmt_se3); in update_cu_mask() [all …]
|
| H A D | kfd_mqd_manager_v12_1.c | 95 if (cu == 8 && sh == 0) in mqd_symmetrically_map_cu_mask_v12_1() 113 struct v12_1_compute_mqd *m; in update_cu_mask() local 122 m = get_mqd(mqd); in update_cu_mask() 123 m->compute_static_thread_mgmt_se0 = se_mask[0]; in update_cu_mask() 124 m->compute_static_thread_mgmt_se1 = se_mask[1]; in update_cu_mask() 127 m->compute_static_thread_mgmt_se0, in update_cu_mask() 128 m->compute_static_thread_mgmt_se1); in update_cu_mask() 131 static void set_priority(struct v12_1_compute_mqd *m, struct queue_properties *q) in set_priority() argument 133 m->cp_hqd_pipe_priority = pipe_priority_map[q->priority]; in set_priority() 134 /* m->cp_hqd_queue_priority = q->priority; */ in set_priority() [all …]
|
| H A D | kfd_mqd_manager_v11.c | 47 struct v11_compute_mqd *m; in update_cu_mask() local 55 m = get_mqd(mqd); in update_cu_mask() 61 m->compute_static_thread_mgmt_se0 = wa_mask; in update_cu_mask() 62 m->compute_static_thread_mgmt_se1 = wa_mask; in update_cu_mask() 63 m->compute_static_thread_mgmt_se2 = wa_mask; in update_cu_mask() 64 m->compute_static_thread_mgmt_se3 = wa_mask; in update_cu_mask() 65 m->compute_static_thread_mgmt_se4 = wa_mask; in update_cu_mask() 66 m->compute_static_thread_mgmt_se5 = wa_mask; in update_cu_mask() 67 m->compute_static_thread_mgmt_se6 = wa_mask; in update_cu_mask() 68 m->compute_static_thread_mgmt_se7 = wa_mask; in update_cu_mask() [all …]
|
| H A D | kfd_mqd_manager_cik.c | 48 struct cik_mqd *m; in update_cu_mask() local 57 m = get_mqd(mqd); in update_cu_mask() 58 m->compute_static_thread_mgmt_se0 = se_mask[0]; in update_cu_mask() 59 m->compute_static_thread_mgmt_se1 = se_mask[1]; in update_cu_mask() 60 m->compute_static_thread_mgmt_se2 = se_mask[2]; in update_cu_mask() 61 m->compute_static_thread_mgmt_se3 = se_mask[3]; in update_cu_mask() 64 m->compute_static_thread_mgmt_se0, in update_cu_mask() 65 m->compute_static_thread_mgmt_se1, in update_cu_mask() 66 m->compute_static_thread_mgmt_se2, in update_cu_mask() 67 m->compute_static_thread_mgmt_se3); in update_cu_mask() [all …]
|
| /linux/drivers/media/platform/ti/cal/ |
| H A D | cal_regs.h | 43 #define CAL_HL_IRQSTATUS_RAW(m) (0x20U + (m) * 0x10U) argument 44 #define CAL_HL_IRQSTATUS(m) (0x24U + (m) * 0x10U) argument 45 #define CAL_HL_IRQENABLE_SET(m) (0x28U + (m) * 0x10U) argument 46 #define CAL_HL_IRQENABLE_CLR(m) (0x2cU + (m) * 0x10U) argument 47 #define CAL_PIX_PROC(m) (0xc0U + (m) * 0x4U) argument 63 #define CAL_WR_DMA_CTRL(m) (0x200U + (m) * 0x10U) argument 64 #define CAL_WR_DMA_ADDR(m) (0x204U + (m) * 0x10U) argument 65 #define CAL_WR_DMA_OFST(m) (0x208U + (m) * 0x10U) argument 66 #define CAL_WR_DMA_XSIZE(m) (0x20cU + (m) * 0x10U) argument 67 #define CAL_CSI2_PPI_CTRL(m) (0x300U + (m) * 0x80U) argument [all …]
|
| /linux/arch/x86/lib/ |
| H A D | csum-partial_64.c | 19 static inline unsigned long update_csum_40b(unsigned long sum, const unsigned long m[5]) in update_csum_40b() 28 :"m" (m[0]), "m" (m[1]), "m" (m[2]), in update_csum_40b() 29 "m" (m[3]), "m" (m[4])); in update_csum_40b() 76 asm("addq 0*8(%[src]),%[res]\n\t" in csum_partial() 77 "adcq 1*8(%[src]),%[res]\n\t" in csum_partial() 78 "adcq 2*8(%[src]),%[res]\n\t" in csum_partial() 79 "adcq 3*8(%[src]),%[res]\n\t" in csum_partial() 82 : [src] "r"(buff), "m"(*(const char(*)[32])buff)); in csum_partial() 86 asm("addq 0*8(%[src]),%[res]\n\t" in csum_partial() 87 "adcq 1*8(%[src]),%[res]\n\t" in csum_partial() [all …]
|
| /linux/tools/testing/selftests/ublk/ |
| H A D | test_stress_03.sh | 27 _create_backfile 0 256M 28 _create_backfile 1 128M 29 _create_backfile 2 128M 31 ublk_io_and_remove 8G -t null -q 4 -z & 32 ublk_io_and_remove 256M -t loop -q 4 -z "${UBLK_BACKFILES[0]}" & 33 ublk_io_and_remove 256M -t stripe -q 4 -z "${UBLK_BACKFILES[1]}" "${UBLK_BACKFILES[2]}" & 37 ublk_io_and_remove 8G -t null -q 4 --auto_zc & 38 ublk_io_and_remove 256M -t loop -q 4 --auto_zc "${UBLK_BACKFILES[0]}" & 39 ublk_io_and_remove 256M -t stripe -q 4 --auto_zc "${UBLK_BACKFILES[1]}" "${UBLK_BACKFILES[2]}" & 40 ublk_io_and_remove 8 [all...] |
| H A D | test_stress_04.sh | 26 _create_backfile 0 256M 27 _create_backfile 1 128M 28 _create_backfile 2 128M 30 ublk_io_and_kill_daemon 8G -t null -q 4 -z --no_ublk_fixed_fd & 31 ublk_io_and_kill_daemon 256M -t loop -q 4 -z --no_ublk_fixed_fd "${UBLK_BACKFILES[0]}" & 32 ublk_io_and_kill_daemon 256M -t stripe -q 4 -z "${UBLK_BACKFILES[1]}" "${UBLK_BACKFILES[2]}" & 36 ublk_io_and_kill_daemon 8G -t null -q 4 --auto_zc & 37 ublk_io_and_kill_daemon 256M -t loop -q 4 --auto_zc "${UBLK_BACKFILES[0]}" & 38 …ublk_io_and_kill_daemon 256M -t stripe -q 4 --auto_zc --no_ublk_fixed_fd "${UBLK_BACKFILES[1]}" "$… 39 ublk_io_and_kill_daemon 8G -t null -q 4 -z --auto_zc --auto_zc_fallback & [all …]
|
| H A D | test_stress_06.sh | 23 _create_backfile 0 256M 24 _create_backfile 1 128M 25 _create_backfile 2 128M 27 ublk_io_and_remove 8G -t null -q 4 -u & 28 ublk_io_and_remove 256M -t loop -q 4 -u "${UBLK_BACKFILES[0]}" & 29 ublk_io_and_remove 256M -t stripe -q 4 -u "${UBLK_BACKFILES[1]}" "${UBLK_BACKFILES[2]}" & 32 ublk_io_and_remove 8G -t null -q 4 -u --nthreads 8 --per_io_tasks & 33 ublk_io_and_remove 256M -t loop -q 4 -u --nthreads 8 --per_io_tasks "${UBLK_BACKFILES[0]}" & 34 ublk_io_and_remove 256M -t stripe -q 4 -u --nthreads 8 --per_io_tasks "${UBLK_BACKFILES[1]}" "${UBL…
|
| /linux/drivers/video/fbdev/matrox/ |
| H A D | matroxfb_maven.c | 42 { 8, 23, 47, 73, 147, 244, 220, 80, 195}, 253 unsigned int m; in matroxfb_PLL_mavenclock() local 256 for (m = pll->in_div_min; m <= pll->in_div_max; m++) { in matroxfb_PLL_mavenclock() 261 n = (fwant * m) / fxtal; in matroxfb_PLL_mavenclock() 268 dvd = m << p; in matroxfb_PLL_mavenclock() 279 dprintk(KERN_DEBUG "Match: %u / %u / %u / %u\n", n, m, p, ln); in matroxfb_PLL_mavenclock() 284 *in = m; in matroxfb_PLL_mavenclock() 523 #define LR(x) maven_set_reg(c, (x), m->regs[(x)]) 524 #define LRP(x) maven_set_reg_pair(c, (x), m->regs[(x)] | (m->regs[(x)+1] << 8)) 525 static void maven_init_TV(struct i2c_client* c, const struct mavenregs* m) { in maven_init_TV() argument [all …]
|
| /linux/drivers/clk/uniphier/ |
| H A D | clk-uniphier-mio.c | 12 UNIPHIER_CLK_FACTOR("sd-44m", -1, "sd-133m", 1, 3), \ 13 UNIPHIER_CLK_FACTOR("sd-33m", -1, "sd-200m", 1, 6), \ 14 UNIPHIER_CLK_FACTOR("sd-50m", -1, "sd-200m", 1, 4), \ 15 UNIPHIER_CLK_FACTOR("sd-67m", -1, "sd-200m", 1, 3), \ 16 UNIPHIER_CLK_FACTOR("sd-100m", -1, "sd-200m", 1, 2), \ 17 UNIPHIER_CLK_FACTOR("sd-40m", -1, "sd-200m", 1, 5), \ 18 UNIPHIER_CLK_FACTOR("sd-25m", -1, "sd-200m", 1, 8), \ 19 UNIPHIER_CLK_FACTOR("sd-22m", -1, "sd-133m", 1, 6) 28 "sd-44m", \ 29 "sd-33m", \ [all …]
|
| /linux/fs/proc/ |
| H A D | proc_tty.c | 26 static void show_tty_range(struct seq_file *m, struct tty_driver *p, in show_tty_range() argument 29 seq_printf(m, "%-20s ", p->driver_name ? p->driver_name : "unknown"); in show_tty_range() 30 seq_printf(m, "/dev/%-8s ", p->name); in show_tty_range() 32 seq_printf(m, "%3d %d-%d ", MAJOR(from), MINOR(from), in show_tty_range() 35 seq_printf(m, "%3d %7d ", MAJOR(from), MINOR(from)); in show_tty_range() 39 seq_puts(m, "system"); in show_tty_range() 41 seq_puts(m, ":/dev/tty"); in show_tty_range() 43 seq_puts(m, ":console"); in show_tty_range() 45 seq_puts(m, ":vtmaster"); in show_tty_range() 48 seq_puts(m, "console"); in show_tty_range() [all …]
|
| /linux/drivers/clk/sunxi-ng/ |
| H A D | ccu-sun50i-a100.c | 39 * The M factor is present in the register's description, but not in the 40 * frequency formula, and it's documented as "M is only used for backdoor 47 .mult = _SUNXI_CCU_MULT_MIN(8, 8, 12), 61 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), 62 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ 77 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), 78 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ 94 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), 95 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ 112 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), [all …]
|
| H A D | ccu-sun50i-h6.c | 31 * The M factor is present in the register's description, but not in the 32 * frequency formula, and it's documented as "M is only used for backdoor 39 .mult = _SUNXI_CCU_MULT_MIN(8, 8, 12), 53 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), 54 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ 68 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), 69 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ 85 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), 86 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ 103 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), [all …]
|
| H A D | ccu-sun55i-a523.c | 49 .n = _SUNXI_CCU_MULT_MIN(8, 8, 11), 50 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ 70 .n = _SUNXI_CCU_MULT_MIN(8, 8, 11), 71 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ 98 static SUNXI_CCU_M_HWS(pll_periph0_800M_clk, "pll-periph0-800M", 100 static SUNXI_CCU_M_HWS(pll_periph0_480M_clk, "pll-periph0-480M", 105 static CLK_FIXED_FACTOR_HWS(pll_periph0_600M_clk, "pll-periph0-600M", 107 static CLK_FIXED_FACTOR_HWS(pll_periph0_400M_clk, "pll-periph0-400M", 109 static CLK_FIXED_FACTOR_HWS(pll_periph0_300M_clk, "pll-periph0-300M", 111 static CLK_FIXED_FACTOR_HWS(pll_periph0_200M_clk, "pll-periph0-200M", [all …]
|
| H A D | ccu-sun20i-d1.c | 40 .mult = _SUNXI_CCU_MULT_MIN(8, 8, 12), 54 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), 55 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ 69 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), 70 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ 84 static SUNXI_CCU_M_HWS(pll_periph0_800M_clk, "pll-periph0-800M", 105 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), 106 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ 129 .n = _SUNXI_CCU_MULT_MIN(8, 8, 12), 130 .m = _SUNXI_CCU_DIV(1, 1), /* input divider */ [all …]
|
| /linux/drivers/clk/sprd/ |
| H A D | sc9863a-clk.c | 26 static SPRD_PLL_SC_GATE_CLK_FW_NAME(mpll0_gate, "mpll0-gate", "ext-26m", 0x94, 28 static SPRD_PLL_SC_GATE_CLK_FW_NAME(dpll0_gate, "dpll0-gate", "ext-26m", 0x98, 30 static SPRD_PLL_SC_GATE_CLK_FW_NAME(lpll_gate, "lpll-gate", "ext-26m", 0x9c, 32 static SPRD_PLL_SC_GATE_CLK_FW_NAME(gpll_gate, "gpll-gate", "ext-26m", 0xa8, 34 static SPRD_PLL_SC_GATE_CLK_FW_NAME(dpll1_gate, "dpll1-gate", "ext-26m", 0x1dc, 36 static SPRD_PLL_SC_GATE_CLK_FW_NAME(mpll1_gate, "mpll1-gate", "ext-26m", 0x1e0, 38 static SPRD_PLL_SC_GATE_CLK_FW_NAME(mpll2_gate, "mpll2-gate", "ext-26m", 0x1e4, 40 static SPRD_PLL_SC_GATE_CLK_FW_NAME(isppll_gate, "isppll-gate", "ext-26m", 85 { .shift = 8, .width = 11 }, /* n */ 91 static SPRD_PLL_FW_NAME(twpll, "twpll", "ext-26m", 0x4, 3, itable, [all …]
|
| H A D | sc9860-clk.c | 25 static CLK_FIXED_FACTOR(fac_4m, "fac-4m", "ext-26m", 27 static CLK_FIXED_FACTOR(fac_2m, "fac-2m", "ext-26m", 29 static CLK_FIXED_FACTOR(fac_1m, "fac-1m", "ext-26m", 31 static CLK_FIXED_FACTOR(fac_250k, "fac-250k", "ext-26m", 33 static CLK_FIXED_FACTOR(fac_rpll0_26m, "rpll0-26m", "ext-26m", 35 static CLK_FIXED_FACTOR(fac_rpll1_26m, "rpll1-26m", "ext-26m", 37 static CLK_FIXED_FACTOR(fac_rco_25m, "rco-25m", "ext-rc0-100m", 39 static CLK_FIXED_FACTOR(fac_rco_4m, "rco-4m", "ext-rc0-100m", 41 static CLK_FIXED_FACTOR(fac_rco_2m, "rco-2m", "ext-rc0-100m", 48 static SPRD_SC_GATE_CLK(mpll0_gate, "mpll0-gate", "ext-26m", 0xb0, [all …]
|
| /linux/drivers/gpu/drm/kmb/ |
| H A D | kmb_regs.h | 24 #define LCD_CTRL_ALPHA_TOP_VL1 (0 << 8) 25 #define LCD_CTRL_ALPHA_TOP_VL2 BIT(8) 26 #define LCD_CTRL_ALPHA_TOP_GL1 (2 << 8) 27 #define LCD_CTRL_ALPHA_TOP_GL2 (3 << 8) 61 #define LAYER0_DMA_CB_FIFO_UNDERFLOW BIT(8) 124 #define LCD_LAYER_TRANSPARENT_EN BIT(8) 133 #define LCD_LAYER_FORMAT_RGBX8888 (8 << 9) 243 #define LCD_DMA_LAYER_AXI_BURST_8 (8 << 5) 400 #define HS_OFFSET(M) (((M) + 1) * 0x400) argument 403 #define MIPI_TXm_HS_CTRL(M) (MIPI_TX_HS_CTRL + HS_OFFSET(M)) argument [all …]
|
| /linux/Documentation/scsi/ |
| H A D | aic7xxx.rst | 27 aic7850 10 PCI/32 10MHz 8Bit 3 28 aic7855 10 PCI/32 10MHz 8Bit 3 29 aic7856 10 PCI/32 10MHz 8Bit 3 30 aic7859 10 PCI/32 20MHz 8Bit 3 31 aic7860 10 PCI/32 20MHz 8Bit 3 34 aic7890 20 PCI/32 40MHz 16Bit 16 3 4 5 6 7 8 35 aic7891 20 PCI/64 40MHz 16Bit 16 3 4 5 6 7 8 36 aic7892 20 PCI/64-66 80MHz 16Bit 16 3 4 5 6 7 8 38 aic7895C 15 PCI/32 20MHz 16Bit 16 2 3 4 5 8 39 aic7896 20 PCI/32 40MHz 16Bit 16 2 3 4 5 6 7 8 [all …]
|