| /rk3399_rockchip-uboot/drivers/mtd/spi/ |
| H A D | spi-nor-tiny.c | 37 static int spi_nor_read_write_reg(struct spi_nor *nor, struct spi_mem_op in spi_nor_read_write_reg() argument 44 return spi_mem_exec_op(nor->spi, op); in spi_nor_read_write_reg() 47 static int spi_nor_read_reg(struct spi_nor *nor, u8 code, u8 *val, int len) in spi_nor_read_reg() argument 55 ret = spi_nor_read_write_reg(nor, &op, val); in spi_nor_read_reg() 63 static int spi_nor_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len) in spi_nor_write_reg() argument 70 return spi_nor_read_write_reg(nor, &op, buf); in spi_nor_write_reg() 73 static ssize_t spi_nor_read_data(struct spi_nor *nor, loff_t from, size_t len, in spi_nor_read_data() argument 77 SPI_MEM_OP(SPI_MEM_OP_CMD(nor->read_opcode, 1), in spi_nor_read_data() 78 SPI_MEM_OP_ADDR(nor->addr_width, from, 1), in spi_nor_read_data() 79 SPI_MEM_OP_DUMMY(nor->read_dummy, 1), in spi_nor_read_data() [all …]
|
| H A D | spi-nor-core.c | 37 static int spi_nor_read_write_reg(struct spi_nor *nor, struct spi_mem_op in spi_nor_read_write_reg() argument 44 return spi_mem_exec_op(nor->spi, op); in spi_nor_read_write_reg() 47 static int spi_nor_read_reg(struct spi_nor *nor, u8 code, u8 *val, int len) in spi_nor_read_reg() argument 55 ret = spi_nor_read_write_reg(nor, &op, val); in spi_nor_read_reg() 63 static int spi_nor_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len) in spi_nor_write_reg() argument 70 return spi_nor_read_write_reg(nor, &op, buf); in spi_nor_write_reg() 73 static ssize_t spi_nor_read_data(struct spi_nor *nor, loff_t from, size_t len, in spi_nor_read_data() argument 77 SPI_MEM_OP(SPI_MEM_OP_CMD(nor->read_opcode, 1), in spi_nor_read_data() 78 SPI_MEM_OP_ADDR(nor->addr_width, from, 1), in spi_nor_read_data() 79 SPI_MEM_OP_DUMMY(nor->read_dummy, 1), in spi_nor_read_data() [all …]
|
| H A D | Makefile | 9 spi-nor-y := sf_probe.o spi-nor-ids.o 14 spi-nor-y += spi-nor-tiny.o 16 spi-nor-y += spi-nor-core.o 19 spi-nor-y += spi-nor-core.o 22 obj-$(CONFIG_SPI_FLASH) += spi-nor.o
|
| /rk3399_rockchip-uboot/include/linux/mtd/ |
| H A D | spi-nor.h | 329 int (*prepare)(struct spi_nor *nor, enum spi_nor_ops ops); 330 void (*unprepare)(struct spi_nor *nor, enum spi_nor_ops ops); 331 int (*read_reg)(struct spi_nor *nor, u8 opcode, u8 *buf, int len); 332 int (*write_reg)(struct spi_nor *nor, u8 opcode, u8 *buf, int len); 334 ssize_t (*read)(struct spi_nor *nor, loff_t from, 336 ssize_t (*write)(struct spi_nor *nor, loff_t to, 338 int (*erase)(struct spi_nor *nor, loff_t offs); 340 int (*flash_lock)(struct spi_nor *nor, loff_t ofs, uint64_t len); 341 int (*flash_unlock)(struct spi_nor *nor, loff_t ofs, uint64_t len); 342 int (*flash_is_locked)(struct spi_nor *nor, loff_t ofs, uint64_t len); [all …]
|
| /rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/orion5x/ |
| H A D | u-boot-spl.lds | 20 MEMORY { .nor : ORIGIN = CONFIG_SPL_TEXT_BASE,\ 36 } > .nor 39 .rodata : { *(SORT_BY_ALIGNMENT(.rodata*)) } >.nor 42 .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.nor 47 } > .nor
|
| /rk3399_rockchip-uboot/board/freescale/mx35pdk/ |
| H A D | README | 54 0x00080000-0x00480000 : "nor.Kernel" 55 0x00480000-0x02280000 : "nor.userfs" 56 0x02280000-0x03e80000 : "nor.rootfs" 90 0x00080000-0x00480000 : "nor.Kernel" 91 0x00480000-0x02280000 : "nor.userfs" 92 0x02280000-0x03e80000 : "nor.rootfs"
|
| /rk3399_rockchip-uboot/configs/ |
| H A D | rv1126b-spi-nor-tb.config | 1 CONFIG_BASE_DEFCONFIG="rv1126b-spi-nor-fastboot_defconfig"
|
| H A D | rv1126-bat-spi-nor-tb.config | 3 CONFIG_BASE_DEFCONFIG="rv1126-spi-nor-tb.config"
|
| H A D | README.rockchip | 66 rv1126-spi-nor-tiny_defconfig 74 rv1126-spi-nor-tb.config
|
| H A D | rv1126-spi-nor-tb.config | 6 CONFIG_BASE_DEFCONFIG="rv1126-spi-nor-tiny_defconfig"
|
| H A D | ls1043ardb_SECURE_BOOT_defconfig | 11 …0,115200 root=/dev/ram0 earlycon=uart8250,mmio,0x21c0500 mtdparts=60000000.nor:2m@0x100000(nor_ban…
|
| H A D | ls1043ardb_defconfig | 10 …0,115200 root=/dev/ram0 earlycon=uart8250,mmio,0x21c0500 mtdparts=60000000.nor:2m@0x100000(nor_ban…
|
| H A D | ls1046aqds_lpuart_defconfig | 10 …0,115200 root=/dev/ram0 earlycon=uart8250,mmio,0x21c0500 mtdparts=60000000.nor:2m@0x100000(nor_ban…
|
| H A D | ls1043aqds_nor_ddr3_defconfig | 9 …0,115200 root=/dev/ram0 earlycon=uart8250,mmio,0x21c0500 mtdparts=60000000.nor:2m@0x100000(nor_ban…
|
| H A D | ls1046aqds_SECURE_BOOT_defconfig | 10 …0,115200 root=/dev/ram0 earlycon=uart8250,mmio,0x21c0500 mtdparts=60000000.nor:2m@0x100000(nor_ban…
|
| H A D | ls1046aqds_defconfig | 9 …0,115200 root=/dev/ram0 earlycon=uart8250,mmio,0x21c0500 mtdparts=60000000.nor:2m@0x100000(nor_ban…
|
| H A D | ls1043aqds_defconfig | 9 …0,115200 root=/dev/ram0 earlycon=uart8250,mmio,0x21c0500 mtdparts=60000000.nor:2m@0x100000(nor_ban…
|
| H A D | ls1046aqds_nand_defconfig | 11 …0,115200 root=/dev/ram0 earlycon=uart8250,mmio,0x21c0500 mtdparts=60000000.nor:2m@0x100000(nor_ban…
|
| /rk3399_rockchip-uboot/board/liebherr/mccmon6/ |
| H A D | mon6_imximage_nor.cfg | 9 BOOT_FROM nor
|
| /rk3399_rockchip-uboot/include/ |
| H A D | fsl_sec_mon.h | 27 #error Neither CONFIG_SYS_FSL_SEC_MON_LE nor CONFIG_SYS_FSL_SEC_MON_BE defined
|
| H A D | fsl_sfp.h | 29 #error Neither CONFIG_SYS_FSL_SFP_LE nor CONFIG_SYS_FSL_SFP_BE is defined
|
| H A D | pcmcia.h | 26 #error Neither CONFIG_PCMCIA_SLOT_A nor CONFIG_PCMCIA_SLOT_B configured
|
| /rk3399_rockchip-uboot/board/freescale/mx6ullevk/ |
| H A D | imximage.cfg | 21 * spi/sd/nand/onenand, qspi/nor 27 BOOT_FROM nor
|
| /rk3399_rockchip-uboot/drivers/mtd/ |
| H A D | Kconfig | 21 bool "support for nand & spi nand & spi nor write operations" 25 Enable write access to nand & spi nand & spi nor
|
| /rk3399_rockchip-uboot/arch/nds32/dts/ |
| H A D | ae3xx.dts | 65 nor@0,0 {
|