Home
last modified time | relevance | path

Searched refs:u_long (Results 1 – 12 of 12) sorted by relevance

/rk3399_rockchip-uboot/include/
H A Datmel_lcd.h26 u_long vl_clk; /* pixel clock in ps */
29 u_long vl_sync; /* Horizontal / vertical sync */
30 u_long vl_bpix; /* Bits per pixel, 0 = 1, 1 = 2, 2 = 4, 3 = 8, 4 = 16 */
31 u_long vl_tft; /* 0 = passive, 1 = TFT */
32 u_long vl_cont_pol_low; /* contrast polarity is low */
33 u_long vl_clk_pol; /* clock polarity */
36 u_long vl_hsync_len; /* Length of horizontal sync */
37 u_long vl_left_margin; /* Time from sync to picture */
38 u_long vl_right_margin; /* Time from picture to sync */
41 u_long vl_vsync_len; /* Length of vertical sync */
[all …]
H A Dpxa_lcd.h17 u_long fdadr; /* Frame descriptor address register */
18 u_long fsadr; /* Frame source address register */
19 u_long fidr; /* Frame ID register */
20 u_long ldcmd; /* Command register */
28 u_long reg_lccr3;
29 u_long reg_lccr2;
30 u_long reg_lccr1;
31 u_long reg_lccr0;
32 u_long fdadr0;
33 u_long fdadr1;
[all …]
/rk3399_rockchip-uboot/drivers/video/
H A Dpxa_lcd.c412 u_long palette_mem_size; in pxafb_init_mem()
416 fbi->screen = (u_long)lcdbase; in pxafb_init_mem()
421 debug("palette_mem_size = 0x%08lx\n", (u_long) palette_mem_size); in pxafb_init_mem()
423 fbi->palette = (u_long)lcdbase + fb_size + PAGE_SIZE - palette_mem_size; in pxafb_init_mem()
432 u_long lccr0; in pxafb_setup_gpio()
563 fbi->dmadesc_fblow->fdadr = (u_long)fbi->dmadesc_fblow; in pxafb_init()
568 fbi->fdadr1 = (u_long)fbi->dmadesc_fblow; /* only used in dual-panel mode */ in pxafb_init()
581 fbi->dmadesc_palette->fdadr = (u_long)fbi->dmadesc_fbhigh; in pxafb_init()
582 fbi->dmadesc_fbhigh->fdadr = (u_long)fbi->dmadesc_palette; in pxafb_init()
584 fbi->fdadr0 = (u_long)fbi->dmadesc_palette; in pxafb_init()
[all …]
H A Dbus_vcxk.c72 u_long *double_bws_long;
93 u_long display_width;
94 u_long display_height;
95 u_long display_bwidth;
124 double_bws_long = (u_long *)double_bws; in vcxk_init()
/rk3399_rockchip-uboot/drivers/net/
H A Ddc2114x.c146 static void sendto_srom(struct eth_device* dev, u_int command, u_long addr);
147 static int getfrom_srom(struct eth_device* dev, u_long addr);
148 static int do_eeprom_cmd(struct eth_device *dev, u_long ioaddr,int cmd,int cmd_len);
149 static int do_read_eeprom(struct eth_device *dev,u_long ioaddr,int location,int addr_len);
152 static int write_srom(struct eth_device *dev, u_long ioaddr, int index, int new_value);
156 static int read_srom(struct eth_device *dev, u_long ioaddr, int index);
175 static int INL(struct eth_device* dev, u_long addr) in INL()
177 return le32_to_cpu(*(volatile u_long *)(addr + dev->iobase)); in INL()
180 static void OUTL(struct eth_device* dev, int command, u_long addr) in OUTL()
182 *(volatile u_long *)(addr + dev->iobase) = cpu_to_le32(command); in OUTL()
[all …]
H A Deepro100.c235 static inline int INW (struct eth_device *dev, u_long addr) in INW()
237 return le16_to_cpu(*(volatile u16 *)(addr + (u_long)dev->iobase)); in INW()
240 static inline void OUTW (struct eth_device *dev, int command, u_long addr) in OUTW()
242 *(volatile u16 *)((addr + (u_long)dev->iobase)) = cpu_to_le16(command); in OUTW()
245 static inline void OUTL (struct eth_device *dev, int command, u_long addr) in OUTL()
247 *(volatile u32 *)((addr + (u_long)dev->iobase)) = cpu_to_le32(command); in OUTL()
251 static inline int INL (struct eth_device *dev, u_long addr) in INL()
253 return le32_to_cpu(*(volatile u32 *)(addr + (u_long)dev->iobase)); in INL()
622 cpu_to_le32 (phys_to_bus ((u_long) packet)); in eepro100_send()
H A Dnatsemi.c253 INW(struct eth_device *dev, u_long addr) in INW()
259 INL(struct eth_device *dev, u_long addr) in INL()
265 OUTW(struct eth_device *dev, int command, u_long addr) in OUTW()
271 OUTL(struct eth_device *dev, int command, u_long addr) in OUTL()
H A Dns8382x.c274 INW(struct eth_device *dev, u_long addr) in INW()
280 INL(struct eth_device *dev, u_long addr) in INL()
286 OUTW(struct eth_device *dev, int command, u_long addr) in OUTW()
292 OUTL(struct eth_device *dev, int command, u_long addr) in OUTL()
/rk3399_rockchip-uboot/include/linux/
H A Dtypes.h85 typedef unsigned long u_long; typedef
/rk3399_rockchip-uboot/include/linux/mtd/
H A Dmtd.h51 u_long time;
52 u_long retries;
56 u_long priv;
/rk3399_rockchip-uboot/fs/yaffs2/
H A Dyaffs_mtdif.c149 ei.priv = (u_long) dev; in nandmtd_EraseBlockInNAND()
/rk3399_rockchip-uboot/drivers/mtd/
H A Dcfi_mtd.c84 u_long t = fi->start[0] + to; in cfi_mtd_write()