Home
last modified time | relevance | path

Searched refs:location (Results 1 – 25 of 89) sorted by relevance

1234

/rk3399_rockchip-uboot/common/
H A Dsplash_source.c64 static int splash_storage_read_raw(struct splash_location *location, in splash_storage_read_raw() argument
69 if (!location) in splash_storage_read_raw()
72 offset = location->offset; in splash_storage_read_raw()
73 switch (location->storage) { in splash_storage_read_raw()
85 static int splash_load_raw(struct splash_location *location, u32 bmp_load_addr) in splash_load_raw() argument
94 res = splash_storage_read_raw(location, bmp_load_addr, bmp_header_size); in splash_load_raw()
104 return splash_storage_read_raw(location, bmp_load_addr, bmp_size); in splash_load_raw()
112 static int splash_select_fs_dev(struct splash_location *location) in splash_select_fs_dev() argument
116 switch (location->storage) { in splash_select_fs_dev()
118 res = fs_set_blk_dev("mmc", location->devpart, FS_TYPE_ANY); in splash_select_fs_dev()
[all …]
/rk3399_rockchip-uboot/board/Arcturus/ucp1020/
H A Dcmd_arc.c112 int location = 1; in get_arc_info() local
119 location++; in get_arc_info()
121 location++; in get_arc_info()
124 location++; in get_arc_info()
134 if (location > 1) in get_arc_info()
135 printf("Using region %d\n", location); in get_arc_info()
/rk3399_rockchip-uboot/env/
H A Dnand.c165 static int erase_and_write_env(const struct nand_env_location *location, in erase_and_write_env() argument
175 printf("Erasing %s...\n", location->name); in erase_and_write_env()
176 if (nand_erase_opts(mtd, &location->erase_opts)) in erase_and_write_env()
179 printf("Writing to %s... ", location->name); in erase_and_write_env()
180 ret = writeenv(location->erase_opts.offset, env_new); in erase_and_write_env()
191 static const struct nand_env_location location[] = { in env_nand_save() local
222 ret = erase_and_write_env(&location[env_idx], (u_char *)env_new); in env_nand_save()
232 ret = erase_and_write_env(&location[env_idx], (u_char *)env_new); in env_nand_save()
405 .location = ENVL_NAND,
H A Dnowhere.c31 .location = ENVL_NOWHERE,
H A Dremote.c59 .location = ENVL_REMOTE,
H A Dext4.c121 .location = ENVL_EXT4,
H A Dfat.c116 .location = ENVL_FAT,
H A Donenand.c110 .location = ENVL_ONENAND,
H A Dnvram.c116 .location = ENVL_NVRAM,
/rk3399_rockchip-uboot/doc/
H A DREADME.splashprepare14 supported locations, and a way of controlling the selected splash location
18 - If splashsource is set to a supported location name as defined by board code,
19 use that splash location.
20 - If splashsource is undefined, use the first splash location as default.
23 A splash source location can describe either storage with raw data, a storage
H A DREADME.arm6428 Since kernel version 4.2 Linux is more relaxed about the DT location, so it
32 4. Spin-table is used to wake up secondary processors. One location
33 (or per processor location) is defined to hold the kernel entry point
34 for secondary processors. It must be ensured that the location is
36 enter slave_cpu branch execution in start.S. The location address
H A DREADME.at9125 You can choose your storage location at config step (here for at91sam9260ek) :
47 You can choose your storage location at config step (here for at91sam9260ek) :
68 You can choose your storage location at config step (here for at91sam9260ek) :
89 You can choose your storage location at config step (here for at91sam9m10g45ek) :
107 You can choose your storage location at config step (here for at91sam9rlek) :
125 You can choose your storage location at config step (here for at91sam9x5ek) :
146 You can choose your storage location at config step (here for sama5d3xek) :
H A DREADME.spear37 location i.e. Serial NOR device
46 placed at default location
H A DREADME.vxworks52 location pointed by "bootaddr" as the kernel bootline. If "bootargs" is not
77 location at 0x4000 for "e820data" and 0x4a00 for "e820info". Typical values
80 unset, which assume the default location for VxWorks.
/rk3399_rockchip-uboot/include/linux/mtd/
H A Domap_elm.h46 struct location { struct
71 struct location error_location[ELM_MAX_CHANNELS]; /* 0x800,0x900 ... */ argument
/rk3399_rockchip-uboot/drivers/net/
H A Dnatsemi.c228 static void write_eeprom(struct eth_device *dev, long addr, int location,
231 static int read_eeprom(struct eth_device *dev, long addr, int location);
232 static int mdio_read(struct eth_device *dev, int phy_id, int location);
437 write_eeprom(struct eth_device *dev, long addr, int location, short value)
442 short write_cmd = location | EE_WriteCmd;
496 read_eeprom(struct eth_device *dev, long addr, int location) in read_eeprom() argument
501 int read_cmd = location | EE_ReadCmd; in read_eeprom()
540 mdio_read(struct eth_device *dev, int phy_id, int location) in mdio_read() argument
542 if (phy_id == 1 && location < 32) in mdio_read()
543 return INL(dev, BasicControl+(location<<2))&0xffff; in mdio_read()
H A Ddc2114x.c149 static int do_read_eeprom(struct eth_device *dev,u_long ioaddr,int location,int addr_len);
547 static int do_read_eeprom(struct eth_device *dev, u_long ioaddr, int location, int addr_len) in do_read_eeprom() argument
551 int read_cmd = location | (SROM_READ_CMD << addr_len); in do_read_eeprom()
557 printf(" EEPROM read at %d ", location); in do_read_eeprom()
594 printf(" EEPROM value at %d is %5.5x.\n", location, retval); in do_read_eeprom()
H A Drtl8139.c185 static int read_eeprom(int location, int addr_len);
300 static int read_eeprom(int location, int addr_len) in read_eeprom() argument
305 int read_cmd = location | (EE_READ_CMD << addr_len); in read_eeprom()
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/
H A DKconfig46 hex "Chipset Micro Code state machine binary location"
50 The location of the CMC binary is determined by a strap. It must be
51 put in flash at a location matching the strap-determined base address.
/rk3399_rockchip-uboot/arch/x86/cpu/broadwell/
H A Dsdram.c57 uint8_t oc_pin, uint8_t location) in pei_data_usb2_port() argument
62 pei_data->usb2_ports[port].location = location; in pei_data_usb2_port()
/rk3399_rockchip-uboot/doc/device-tree-bindings/serial/
H A Dxilinx_uartlite.txt5 - reg: Should contain UART controller registers location and length.
/rk3399_rockchip-uboot/arch/x86/cpu/quark/
H A DKconfig45 hex "Remote Management Unit (RMU) binary location"
49 The location of the RMU binary is determined by a strap. It must be
50 put in flash at a location matching the strap-determined base address.
/rk3399_rockchip-uboot/board/work-microwave/work_92105/
H A DREADME77 (load lpc32xx-full.bin at location $loadaddr)
83 (load lpc32xx-spl.img or lpc32xx-boot-N.bin at location $loadaddr)
90 (load u-boot.img at location $loadaddr)
/rk3399_rockchip-uboot/doc/device-tree-bindings/video/
H A Dsimple-framebuffer.txt9 - reg: Should contain the location and size of the framebuffer memory.
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dmenu.c558 struct menu *submenu[8], *menu, *location = NULL; in get_prompt_str() local
567 if (location == NULL && accessible) in get_prompt_str()
568 location = menu; in get_prompt_str()
570 if (head && location) { in get_prompt_str()
582 jump->target = location; in get_prompt_str()
597 if (jump && menu == location) in get_prompt_str()

1234