[U-Boot] [PATCH v2] sf: Minor cleanups

Jagannadha Sutradharudu Teki jagannadha.sutradharudu-teki at xilinx.com
Mon Oct 7 15:41:22 CEST 2013


- Add spaces, tabs
- Commenting.
- Rearrange code.
- Add static qualifier for missing func.
- Remove memory_map from ramtron.c
- Ramtron: spi_flash_internal.h -> sf_internal.h

Signed-off-by: Jagannadha Sutradharudu Teki <jaganna at xilinx.com>
---
Changes for v2:
	- Replace rantron: spi_flash_internal.h -> sf_internal.h

 drivers/mtd/spi/ramtron.c     |   4 +-
 drivers/mtd/spi/sf_internal.h |   8 +--
 drivers/mtd/spi/sf_probe.c    |   7 ++-
 include/spi.h                 |  22 ++++----
 include/spi_flash.h           |   4 +-
 update.txt                    | 125 ++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 147 insertions(+), 23 deletions(-)
 create mode 100644 update.txt

diff --git a/drivers/mtd/spi/ramtron.c b/drivers/mtd/spi/ramtron.c
index c9701d0..7367e7a 100644
--- a/drivers/mtd/spi/ramtron.c
+++ b/drivers/mtd/spi/ramtron.c
@@ -36,7 +36,7 @@
 #include <common.h>
 #include <malloc.h>
 #include <spi_flash.h>
-#include "spi_flash_internal.h"
+#include "sf_internal.h"
 
 /*
  * Properties of supported FRAMs
@@ -383,8 +383,6 @@ struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
 	printf("SF: Detected %s with page size ", flash->name);
 	print_size(flash->sector_size, ", total ");
 	print_size(flash->size, "");
-	if (flash->memory_map)
-		printf(", mapped at %p", flash->memory_map);
 	puts("\n");
 
 	spi_release_bus(spi);
diff --git a/drivers/mtd/spi/sf_internal.h b/drivers/mtd/spi/sf_internal.h
index 29a14f4..12d02f9 100644
--- a/drivers/mtd/spi/sf_internal.h
+++ b/drivers/mtd/spi/sf_internal.h
@@ -13,7 +13,7 @@
 #define SPI_FLASH_16MB_BOUN		0x1000000
 
 /* SECT flags */
-#define SECT_4K			(1 << 1)
+#define SECT_4K				(1 << 1)
 #define SECT_32K			(1 << 2)
 #define E_FSR				(1 << 3)
 
@@ -29,8 +29,8 @@
 #define CMD_WRITE_DISABLE		0x04
 #define CMD_READ_STATUS			0x05
 #define CMD_WRITE_ENABLE		0x06
-#define CMD_READ_CONFIG		0x35
-#define CMD_FLAG_STATUS		0x70
+#define CMD_READ_CONFIG			0x35
+#define CMD_FLAG_STATUS			0x70
 
 /* Read commands */
 #define CMD_READ_ARRAY_SLOW		0x03
@@ -57,7 +57,7 @@
 /* SST specific */
 #ifdef CONFIG_SPI_FLASH_SST
 # define SST_WP			0x01	/* Supports AAI word program */
-# define CMD_SST_BP			0x02    /* Byte Program */
+# define CMD_SST_BP		0x02    /* Byte Program */
 # define CMD_SST_AAI_WP		0xAD	/* Auto Address Incr Word Program */
 
 int sst_write_wp(struct spi_flash *flash, u32 offset, size_t len,
diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c
index 6aa7086..4251b1b 100644
--- a/drivers/mtd/spi/sf_probe.c
+++ b/drivers/mtd/spi/sf_probe.c
@@ -152,7 +152,8 @@ static const struct spi_flash_params spi_flash_params_table[] = {
 	 */
 };
 
-struct spi_flash *spi_flash_validate_params(struct spi_slave *spi, u8 *idcode)
+static struct spi_flash *spi_flash_validate_params(struct spi_slave *spi,
+		u8 *idcode)
 {
 	const struct spi_flash_params *params;
 	struct spi_flash *flash;
@@ -189,6 +190,7 @@ struct spi_flash *spi_flash_validate_params(struct spi_slave *spi, u8 *idcode)
 
 	flash->spi = spi;
 	flash->name = params->name;
+	flash->memory_map = spi->memory_map;
 
 	/* Assign spi_flash ops */
 	flash->write = spi_flash_cmd_write_ops;
@@ -203,7 +205,6 @@ struct spi_flash *spi_flash_validate_params(struct spi_slave *spi, u8 *idcode)
 	flash->page_size = (ext_jedec == 0x4d00) ? 512 : 256;
 	flash->sector_size = params->sector_size;
 	flash->size = flash->sector_size * params->nr_sectors;
-	flash->memory_map = spi->memory_map;
 
 	/* Compute erase sector and command */
 	if (params->flags & SECT_4K) {
@@ -224,8 +225,8 @@ struct spi_flash *spi_flash_validate_params(struct spi_slave *spi, u8 *idcode)
 		flash->poll_cmd = CMD_FLAG_STATUS;
 #endif
 
+	/* Configure the BAR - discover bank cmds and read current bank */
 #ifdef CONFIG_SPI_FLASH_BAR
-	/* Configure the BAR - discover bank cmds and read current bank  */
 	u8 curr_bank = 0;
 	if (flash->size > SPI_FLASH_16MB_BOUN) {
 		flash->bank_read_cmd = (idcode[0] == 0x01) ?
diff --git a/include/spi.h b/include/spi.h
index c2086fc..5164d43 100644
--- a/include/spi.h
+++ b/include/spi.h
@@ -25,24 +25,24 @@
 #define	SPI_PREAMBLE	0x80			/* Skip preamble bytes */
 
 /* SPI transfer flags */
-#define SPI_XFER_BEGIN	0x01			/* Assert CS before transfer */
-#define SPI_XFER_END	0x02			/* Deassert CS after transfer */
-#define SPI_XFER_MMAP	0x08			/* Memory Mapped start */
-#define SPI_XFER_MMAP_END	0x10		/* Memory Mapped End */
+#define SPI_XFER_BEGIN		0x01	/* Assert CS before transfer */
+#define SPI_XFER_END		0x02	/* Deassert CS after transfer */
+#define SPI_XFER_MMAP		0x08	/* Memory Mapped start */
+#define SPI_XFER_MMAP_END	0x10	/* Memory Mapped End */
 
 /* Header byte that marks the start of the message */
-#define SPI_PREAMBLE_END_BYTE		0xec
+#define SPI_PREAMBLE_END_BYTE	0xec
 
 /**
- * struct spi_slave: Representation of a SPI slave,
- *		      i.e. what we're communicating with.
+ * struct spi_slave - Representation of a SPI slave
  *
  * Drivers are expected to extend this with controller-specific data.
  *
- *   bus:	ID of the bus that the slave is attached to.
- *   cs:	ID of the chip select connected to the slave.
- *   max_write_size:	If non-zero, the maximum number of bytes which can
- *		be written at once, excluding command bytes.
+ * @bus:		ID of the bus that the slave is attached to.
+ * @cs:			ID of the chip select connected to the slave.
+ * @max_write_size:	If non-zero, the maximum number of bytes which can
+ *			be written at once, excluding command bytes.
+ * @memory_map:		Address of read-only SPI flash access.
  */
 struct spi_slave {
 	unsigned int bus;
diff --git a/include/spi_flash.h b/include/spi_flash.h
index b7cce12..1ff5af4 100644
--- a/include/spi_flash.h
+++ b/include/spi_flash.h
@@ -27,13 +27,13 @@
  * @size:		Total flash size
  * @page_size:		Write (page) size
  * @sector_size:	Sector size
- * @erase_size:	Erase size
+ * @erase_size:		Erase size
  * @bank_read_cmd:	Bank read cmd
  * @bank_write_cmd:	Bank write cmd
  * @bank_curr:		Current flash bank
  * @poll_cmd:		Poll cmd - for flash erase/program
  * @erase_cmd:		Erase cmd 4K, 32K, 64K
- * @memory_map:	Address of read-only SPI flash access
+ * @memory_map:		Address of read-only SPI flash access
  * @read:		Flash read ops: Read len bytes at offset into buf
  *			Supported cmds: Fast Array Read
  * @write:		Flash write ops: Write len bytes from buf into offeset
diff --git a/update.txt b/update.txt
new file mode 100644
index 0000000..4ad4341
--- /dev/null
+++ b/update.txt
@@ -0,0 +1,125 @@
+Subject: Pull request: u-boot-spi/master
+
+Hi Tom,
+
+Just released pull request with new sf probe support.
+Tested these changes on stmicro, winbond, spansion and sst.
+
+Hope, nothing breaks!
+
+--
+Thanks,
+Jagan.
+
+The following changes since commit f835c77fb7e57508ffe8d8ca3a092ee28add77b2:
+
+  Merge branch 'master' of git://git.denx.de/u-boot-arm (2013-10-04 13:17:48 -0400)
+
+are available in the git repository at:
+
+
+  git://git.denx.de/u-boot-spi.git master
+
+for you to fetch changes up to eecf9ed71a31ee017360e47c804b0bb34242623d:
+
+  doc: SPI: Update SPI status track (2013-10-07 17:55:53 +0530)
+
+----------------------------------------------------------------
+Jagannadha Sutradharudu Teki (35):
+      sf: Divide spi_flash into multiple parts
+      sf: probe: Add new spi_flash_probe support
+      sf: probe: Add support for M25P* flash parts
+      sf: probe: Add support for EN25Q* flash parts
+      sf: probe: Add support for GD25* flash parts
+      sf: probe: Add support for MX25L* flash parts
+      sf: probe: Add support for W25* flash parts
+      sf: probe: Add support for S25FL* flash parts
+      sf: probe: Add support for SST25* flash parts
+      sf: probe: Add support for AT45DB* flash parts
+      sf: probe: Give proper spacing on flash table params
+      sf: probe: Add support for SST_WP
+      sf: probe: Add support to clear flash BP# bits
+      sf: probe: Add support for erase sector selection flag
+      sf: probe: Add support for flag status polling
+      sf: probe: Simply the BAR configuration logic
+      sf: Add proper comment style on spi_flash structure
+      sf: ramtron: Add support for separate flash driver
+      sf: Remove unneeded flash drivers files
+      sf: probe: Add support for EN25Q64
+      sf: probe: Add support for S25FL256S_256K
+      sf: probe: Add support for S25FL512S_256K
+      sf: probe: Use print_size arg as page_size
+      sf: probe: Print erase_size while printing flash details
+      sf: ops: Add static qualifier to spi_flash_cmd_bankaddr_write
+      sf: probe: Add support for MX25L25635F
+      sf: probe: Add support for MX25L51235F
+      sf: Remove spi_flash_do_alloc references
+      sf: spi_flash cleanups
+      spi: spi cleanups
+      sf: Rename spi_flash files
+      doc: SPI: Add status.txt for tracking SPI subsys status
+      sf: Minor cleanups
+      sf: ramtron: Remove page_size print
+      doc: SPI: Update SPI status track
+
+Matt Porter (3):
+      omap5: add qspi support
+      spi: add TI QSPI driver
+      dra7xx_evm: add SPL API, QSPI, and serial flash support
+
+Poddar, Sourav (3):
+      armv7: hw_data: change clock divider setting.
+      sf: Add memory mapped read support
+      README: qspi usecase and testing documentation.
+
+Priyanka Jain (1):
+      sf: probe: Add support for EN25S64
+
+ arch/arm/cpu/armv7/omap5/hw_data.c                 |  10 +-
+ arch/arm/cpu/armv7/omap5/prcm-regs.c               |   1 +
+ arch/arm/include/asm/arch-omap5/omap.h             |   3 +
+ arch/arm/include/asm/arch-omap5/spl.h              |   1 +
+ arch/arm/include/asm/omap_common.h                 |   1 +
+ board/ti/dra7xx/mux_data.h                         |  10 +
+ doc/SPI/README.ti_qspi_dra_test                    |  48 ++
+ doc/SPI/README.ti_qspi_flash                       |  47 ++
+ doc/SPI/status.txt                                 |  31 ++
+ drivers/mtd/spi/Makefile                           |  15 +-
+ drivers/mtd/spi/atmel.c                            | 544 ------------------
+ drivers/mtd/spi/eon.c                              |  60 --
+ drivers/mtd/spi/gigadevice.c                       |  65 ---
+ drivers/mtd/spi/macronix.c                         |  98 ----
+ drivers/mtd/spi/ramtron.c                          | 120 +++-
+ drivers/mtd/spi/sf.c                               |  54 ++
+ .../spi/{spi_flash_internal.h => sf_internal.h}    | 140 ++---
+ drivers/mtd/spi/sf_ops.c                           | 405 ++++++++++++++
+ drivers/mtd/spi/sf_probe.c                         | 363 ++++++++++++
+ drivers/mtd/spi/spansion.c                         | 141 -----
+ drivers/mtd/spi/spi_flash.c                        | 615 ---------------------
+ drivers/mtd/spi/sst.c                              | 238 --------
+ drivers/mtd/spi/stmicro.c                          | 202 -------
+ drivers/mtd/spi/winbond.c                          | 141 -----
+ drivers/spi/Makefile                               |   1 +
+ drivers/spi/ti_qspi.c                              | 311 +++++++++++
+ include/configs/dra7xx_evm.h                       |  19 +
+ include/configs/top9000.h                          |   1 -
+ include/spi.h                                      | 100 ++--
+ include/spi_flash.h                                | 103 ++--
+ 30 files changed, 1591 insertions(+), 2297 deletions(-)
+ create mode 100644 doc/SPI/README.ti_qspi_dra_test
+ create mode 100644 doc/SPI/README.ti_qspi_flash
+ create mode 100644 doc/SPI/status.txt
+ delete mode 100644 drivers/mtd/spi/atmel.c
+ delete mode 100644 drivers/mtd/spi/eon.c
+ delete mode 100644 drivers/mtd/spi/gigadevice.c
+ delete mode 100644 drivers/mtd/spi/macronix.c
+ create mode 100644 drivers/mtd/spi/sf.c
+ rename drivers/mtd/spi/{spi_flash_internal.h => sf_internal.h} (62%)
+ create mode 100644 drivers/mtd/spi/sf_ops.c
+ create mode 100644 drivers/mtd/spi/sf_probe.c
+ delete mode 100644 drivers/mtd/spi/spansion.c
+ delete mode 100644 drivers/mtd/spi/spi_flash.c
+ delete mode 100644 drivers/mtd/spi/sst.c
+ delete mode 100644 drivers/mtd/spi/stmicro.c
+ delete mode 100644 drivers/mtd/spi/winbond.c
+ create mode 100644 drivers/spi/ti_qspi.c
-- 
1.8.3




More information about the U-Boot mailing list