Home
last modified time | relevance | path

Searched refs:g (Results 1 – 25 of 181) sorted by relevance

12345678

/rk3399_rockchip-uboot/drivers/usb/gadget/
H A Dgadget_chips.h18 #define gadget_is_net2280(g) (!strcmp("net2280", (g)->name)) argument
20 #define gadget_is_net2280(g) 0 argument
24 #define gadget_is_amd5536udc(g) (!strcmp("amd5536udc", (g)->name)) argument
26 #define gadget_is_amd5536udc(g) 0 argument
30 #define gadget_is_dummy(g) (!strcmp("dummy_udc", (g)->name)) argument
32 #define gadget_is_dummy(g) 0 argument
36 #define gadget_is_pxa(g) (!strcmp("pxa2xx_udc", (g)->name)) argument
38 #define gadget_is_pxa(g) 0 argument
42 #define gadget_is_goku(g) (!strcmp("goku_udc", (g)->name)) argument
44 #define gadget_is_goku(g) 0 argument
[all …]
H A Dat91_udc.h138 static inline struct at91_udc *to_udc(struct usb_gadget *g) in to_udc() argument
140 return container_of(g, struct at91_udc, gadget); in to_udc()
H A Dstorage_common.c573 fsg_ep_desc(struct usb_gadget *g, struct usb_endpoint_descriptor *fs, in fsg_ep_desc() argument
582 switch (g->speed) { in fsg_ep_desc()
584 if (gadget_is_superspeed(g)) { in fsg_ep_desc()
591 if (gadget_is_dualspeed(g)) { in fsg_ep_desc()
/rk3399_rockchip-uboot/disk/
H A Dpart_amiga.c111 struct amiga_part_geometry *g; in print_part_info() local
113 g = (struct amiga_part_geometry *)&(p->environment); in print_part_info()
117 g->low_cyl * g->block_per_track * g->surfaces , in print_part_info()
118 (g->high_cyl - g->low_cyl + 1) * g->block_per_track * g->surfaces - 1); in print_part_info()
119 print_disk_type(g->dos_type); in print_part_info()
120 printf("\t%5d\n", g->boot_priority); in print_part_info()
297 struct amiga_part_geometry *g; in part_get_info_amiga() local
302 g = (struct amiga_part_geometry *)&(p->environment); in part_get_info_amiga()
303 info->start = g->low_cyl * g->block_per_track * g->surfaces; in part_get_info_amiga()
304 info->size = (g->high_cyl - g->low_cyl + 1) * g->block_per_track * g->surfaces - 1; in part_get_info_amiga()
[all …]
/rk3399_rockchip-uboot/fs/zfs/
H A Dzfs_sha256.c80 uint32_t a, b, c, d, e, f, g, h, t, T1, T2, W[64]; in SHA256Transform() local
90 e = H[4]; f = H[5]; g = H[6]; h = H[7]; in SHA256Transform()
93 T1 = h + SIGMA1(e) + Ch(e, f, g) + SHA256_K[t] + W[t]; in SHA256Transform()
95 h = g; g = f; f = e; e = d + T1; in SHA256Transform()
100 H[4] += e; H[5] += f; H[6] += g; H[7] += h; in SHA256Transform()
/rk3399_rockchip-uboot/drivers/usb/musb-new/
H A Dmusb_gadget.c1775 static int musb_gadget_start(struct usb_gadget *g,
1777 static int musb_gadget_stop(struct usb_gadget *g,
1834 musb->g.ep0 = &ep->end_point; in init_peripheral_ep()
1841 list_add_tail(&ep->end_point.ep_list, &musb->g.ep_list); in init_peripheral_ep()
1856 INIT_LIST_HEAD(&(musb->g.ep_list)); in musb_g_init_endpoints()
1891 musb->g.ops = &musb_gadget_operations; in musb_gadget_setup()
1893 musb->g.max_speed = USB_SPEED_HIGH; in musb_gadget_setup()
1895 musb->g.speed = USB_SPEED_UNKNOWN; in musb_gadget_setup()
1899 dev_set_name(&musb->g.dev, "gadget"); in musb_gadget_setup()
1900 musb->g.dev.parent = musb->controller; in musb_gadget_setup()
[all …]
H A Dmusb_gadget_ep0.c72 if (musb->g.is_otg) { in service_tx_status_request()
73 result[0] |= musb->g.b_hnp_enable in service_tx_status_request()
75 result[0] |= musb->g.a_alt_hnp_support in service_tx_status_request()
77 result[0] |= musb->g.a_hnp_support in service_tx_status_request()
311 if (musb->g.speed != USB_SPEED_HIGH) in service_zero_data_request()
375 if (!musb->g.is_otg) in service_zero_data_request()
377 musb->g.b_hnp_enable = 1; in service_zero_data_request()
381 if (!musb->g.is_otg) in service_zero_data_request()
383 musb->g.a_hnp_support = 1; in service_zero_data_request()
386 if (!musb->g.is_otg) in service_zero_data_request()
[all …]
H A Dmusb_core.h429 struct usb_gadget g; /* the gadget */ member
452 static inline struct musb *gadget_to_musb(struct usb_gadget *g) in gadget_to_musb() argument
454 return container_of(g, struct musb, g); in gadget_to_musb()
/rk3399_rockchip-uboot/include/linux/usb/
H A Dcomposite.h149 ep_choose(struct usb_gadget *g, struct usb_endpoint_descriptor *hs, in ep_choose() argument
152 if (gadget_is_dualspeed(g) && g->speed == USB_SPEED_HIGH) in ep_choose()
H A Dgadget.h568 static inline int gadget_is_dualspeed(struct usb_gadget *g) in gadget_is_dualspeed() argument
584 static inline int gadget_is_superspeed(struct usb_gadget *g) in gadget_is_superspeed() argument
586 return g->max_speed >= USB_SPEED_SUPER; in gadget_is_superspeed()
596 static inline int gadget_is_otg(struct usb_gadget *g) in gadget_is_otg() argument
599 return g->is_otg; in gadget_is_otg()
/rk3399_rockchip-uboot/drivers/video/
H A Dcfb_console.c1044 unsigned char g, unsigned char b) in video_set_lut() argument
1050 #define FILL_8BIT_332RGB(r,g,b) { \ argument
1051 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
1055 #define FILL_15BIT_555RGB(r,g,b) { \ argument
1058 ((g>>3)<<5) | \
1063 #define FILL_16BIT_565RGB(r,g,b) { \ argument
1066 (((g)>>2)<<5) | \
1071 #define FILL_32BIT_X888RGB(r,g,b) { \ argument
1074 (g<<8) | \
1080 #define FILL_24BIT_888RGB(r,g,b) { \ argument
[all …]
/rk3399_rockchip-uboot/lib/
H A Dbch.c879 struct gf_poly **g, struct gf_poly **h) in factor_polynomial() argument
889 *g = f; in factor_polynomial()
904 gf_poly_copy(*g, gcd); in factor_polynomial()
1118 static void build_mod8_tables(struct bch_control *bch, const uint32_t *g) in build_mod8_tables() argument
1137 data ^= g[0] >> (31-d); in build_mod8_tables()
1139 hi = (d < 31) ? g[j] << (d+1) : 0; in build_mod8_tables()
1141 g[j+1] >> (31-d) : 0; in build_mod8_tables()
1209 struct gf_poly *g; in compute_generator_polynomial() local
1212 g = bch_alloc(GF_POLY_SZ(m*t), &err); in compute_generator_polynomial()
1231 g->deg = 0; in compute_generator_polynomial()
[all …]
/rk3399_rockchip-uboot/doc/device-tree-bindings/usb/
H A Ddwc2.txt37 - g-rx-fifo-size: size of rx fifo size in gadget mode.
38 - g-np-tx-fifo-size: size of non-periodic tx fifo size in gadget mode.
39 - g-tx-fifo-size: size of periodic tx fifo per endpoint (except ep0) in gadget mode.
46 - g-use-dma: gadget DMA mode is automatically detected
/rk3399_rockchip-uboot/drivers/usb/dwc3/
H A Dgadget.h28 #define gadget_to_dwc(g) (container_of(g, struct dwc3, gadget)) argument
/rk3399_rockchip-uboot/drivers/mtd/ubi/
H A Ddebug.h35 #define ubi_dbg_print_hex_dump(ps, pt, r, g, b, len, a) \ argument
36 print_hex_dump(ps, pt, r, g, b, len, a)
/rk3399_rockchip-uboot/doc/
H A DREADME.power-framework28 The same device - e.g. MAX8997 uses two different I2C busses and addresses.
36 one operation - e.g. PMIC enables LDO.
48 e.g. ./include/power/max8997_pmic.h
51 e.g. ./drivers/power/pmic/power_core.c
54 e.g. ./drivers/power/pmic/pmic_max8997.c
55 e.g. ./drivers/power/battery/trats/bat_trats.c
56 e.g. ./drivers/power/fuel_gauge/fg_max17042.c
H A DREADME.rockusb9 use Rockusb for upgrading firmware (e.g. kernel, u-boot, rootfs, etc.).
25 e.g. rockusb 0 mmc 0
/rk3399_rockchip-uboot/board/l+g/vinco/
H A DKconfig7 default "l+g"
H A DMAINTAINERS4 F: board/l+g/vinco
/rk3399_rockchip-uboot/board/freescale/mx31ads/
H A DMAINTAINERS2 #M: (resigned) Guennadi Liakhovetski <g.liakhovetski@gmx.de>
/rk3399_rockchip-uboot/board/imx31_phycore/
H A DMAINTAINERS9 #M: (resigned) Guennadi Liakhovetski <g.liakhovetski@gmx.de>
/rk3399_rockchip-uboot/arch/arm/dts/
H A Dtegra30-colibri.dts31 * GEN1_I2C: I2C_SDA/SCL on SODIMM pin 194/196 (e.g. RTC on carrier
43 /* DDC_CLOCK/DATA on X3 pin 15/16 (e.g. display EDID) */
/rk3399_rockchip-uboot/doc/device-tree-bindings/pmic/
H A Drn5t567.txt7 - reg: depending on strapping, e.g. 0x33
/rk3399_rockchip-uboot/include/
H A Dvideo_fb.h88 unsigned char g, /* green */
/rk3399_rockchip-uboot/board/toradex/colibri_imx6/
H A Dpf0100_otp.inc16 …^WRITE_I2C:\(..\):\(..\)/\{pmic_i2c, 0x\1, 0x\2\},/g' -e 's/^DELAY:\([0-9]*\)/\{pmic_delay, 0, \1\…
17 … sed -i -e 's/^VPGM:ON/\{pmic_vpgm, 0, 1},/g' -e 's/^VPGM:OFF/\{pmic_vpgm, 0, 0},/g' pf0100_otp.inc
18 …sed -i -e 's/^PWRON: HIGH/\{pmic_pwr, 0, 1},/g' -e 's/^PWRON:LOW/\{pmic_pwr, 0, 0},/g' pf0100_otp.…

12345678