diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-arm/arch-omap3/cpu.h | 41 | ||||
| -rw-r--r-- | include/configs/omap3_beagle.h | 1 | ||||
| -rw-r--r-- | include/configs/omap3_evm.h | 1 | ||||
| -rw-r--r-- | include/configs/omap3_overo.h | 1 | ||||
| -rw-r--r-- | include/configs/omap3_pandora.h | 1 | ||||
| -rw-r--r-- | include/configs/omap3_zoom1.h | 1 | ||||
| -rw-r--r-- | include/configs/omap3_zoom2.h | 1 | 
7 files changed, 18 insertions, 29 deletions
| diff --git a/include/asm-arm/arch-omap3/cpu.h b/include/asm-arm/arch-omap3/cpu.h index a4ce45ab2..2d203d1d9 100644 --- a/include/asm-arm/arch-omap3/cpu.h +++ b/include/asm-arm/arch-omap3/cpu.h @@ -81,30 +81,38 @@ typedef struct ctrl_id {  #define HS_DEVICE		0x2  #define GP_DEVICE		0x3 -/* GPMC CS3/cs4/cs6 not avaliable */  #define GPMC_BASE		(OMAP34XX_GPMC_BASE)  #define GPMC_CONFIG_CS0		0x60 -#define GPMC_CONFIG_CS5		0x150 - -#define GPMC_CONFIG_CS0_BASE	(GPMC_BASE + GPMC_CONFIG_CS0) -#define GPMC_CONFIG_CS5_BASE	(GPMC_BASE + GPMC_CONFIG_CS5) -#define GPMC_CONFIG_WP		0x10 - -#define GPMC_CONFIG_WIDTH	0x30  #ifndef __ASSEMBLY__ +struct gpmc_cs { +	unsigned int config1;		/* 0x00 */ +	unsigned int config2;		/* 0x04 */ +	unsigned int config3;		/* 0x08 */ +	unsigned int config4;		/* 0x0C */ +	unsigned int config5;		/* 0x10 */ +	unsigned int config6;		/* 0x14 */ +	unsigned int config7;		/* 0x18 */ +	unsigned int nand_cmd;		/* 0x1C */ +	unsigned int nand_adr;		/* 0x20 */ +	unsigned int nand_dat;		/* 0x24 */ +	unsigned char res[8];		/* blow up to 0x30 byte */ +}; +  typedef struct gpmc {  	unsigned char res1[0x10];  	unsigned int sysconfig;		/* 0x10 */  	unsigned char res2[0x4];  	unsigned int irqstatus;		/* 0x18 */ -	unsigned int irqenable; 	/* 0x1C */ +	unsigned int irqenable;		/* 0x1C */  	unsigned char res3[0x20];  	unsigned int timeout_control; 	/* 0x40 */  	unsigned char res4[0xC];  	unsigned int config;		/* 0x50 */  	unsigned int status;		/* 0x54 */ -	unsigned char res5[0x19C]; +	unsigned char res5[0x8]; +	struct gpmc_cs cs[8];	/* 0x60, 0x90, .. */ +	unsigned char res6[0x18];  	unsigned int ecc_config;	/* 0x1F4 */  	unsigned int ecc_control;	/* 0x1F8 */  	unsigned int ecc_size_config;	/* 0x1FC */ @@ -118,19 +126,6 @@ typedef struct gpmc {  	unsigned int ecc8_result;	/* 0x21C */  	unsigned int ecc9_result;	/* 0x220 */  } gpmc_t; - -typedef struct gpmc_csx { -	unsigned int config1;		/* 0x00 */ -	unsigned int config2;		/* 0x04 */ -	unsigned int config3;		/* 0x08 */ -	unsigned int config4;		/* 0x0C */ -	unsigned int config5;		/* 0x10 */ -	unsigned int config6;		/* 0x14 */ -	unsigned int config7;		/* 0x18 */ -	unsigned int nand_cmd;		/* 0x1C */ -	unsigned int nand_adr;		/* 0x20 */ -	unsigned int nand_dat;		/* 0x24 */ -} gpmc_csx_t;  #else /* __ASSEMBLY__ */  #define GPMC_CONFIG1		0x00  #define GPMC_CONFIG2		0x04 diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 8fc6fb26c..72a4c89d6 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -300,7 +300,6 @@  #define CONFIG_SYS_JFFS2_NUM_BANKS	1  #ifndef __ASSEMBLY__ -extern gpmc_csx_t *nand_cs_base;  extern gpmc_t *gpmc_cfg_base;  extern unsigned int boot_flash_base;  extern volatile unsigned int boot_flash_env_addr; diff --git a/include/configs/omap3_evm.h b/include/configs/omap3_evm.h index 809198b0f..f1e1e6a72 100644 --- a/include/configs/omap3_evm.h +++ b/include/configs/omap3_evm.h @@ -292,7 +292,6 @@  #define CONFIG_SYS_JFFS2_NUM_BANKS	1  #ifndef __ASSEMBLY__ -extern gpmc_csx_t *nand_cs_base;  extern gpmc_t *gpmc_cfg_base;  extern unsigned int boot_flash_base;  extern volatile unsigned int boot_flash_env_addr; diff --git a/include/configs/omap3_overo.h b/include/configs/omap3_overo.h index c359c60b1..67620e96e 100644 --- a/include/configs/omap3_overo.h +++ b/include/configs/omap3_overo.h @@ -285,7 +285,6 @@  #define CONFIG_SYS_JFFS2_NUM_BANKS	1  #ifndef __ASSEMBLY__ -extern gpmc_csx_t *nand_cs_base;  extern gpmc_t *gpmc_cfg_base;  extern unsigned int boot_flash_base;  extern volatile unsigned int boot_flash_env_addr; diff --git a/include/configs/omap3_pandora.h b/include/configs/omap3_pandora.h index d7b1cc189..6e3657bfb 100644 --- a/include/configs/omap3_pandora.h +++ b/include/configs/omap3_pandora.h @@ -289,7 +289,6 @@  #define CONFIG_SYS_JFFS2_NUM_BANKS	1  #ifndef __ASSEMBLY__ -extern gpmc_csx_t *nand_cs_base;  extern gpmc_t *gpmc_cfg_base;  extern unsigned int boot_flash_base;  extern volatile unsigned int boot_flash_env_addr; diff --git a/include/configs/omap3_zoom1.h b/include/configs/omap3_zoom1.h index 676b42547..43249bd2b 100644 --- a/include/configs/omap3_zoom1.h +++ b/include/configs/omap3_zoom1.h @@ -297,7 +297,6 @@  #define CONFIG_SYS_JFFS2_NUM_BANKS	1  #ifndef __ASSEMBLY__ -extern gpmc_csx_t *nand_cs_base;  extern gpmc_t *gpmc_cfg_base;  extern unsigned int boot_flash_base;  extern volatile unsigned int boot_flash_env_addr; diff --git a/include/configs/omap3_zoom2.h b/include/configs/omap3_zoom2.h index 3f6f5451a..8d3c38dc6 100644 --- a/include/configs/omap3_zoom2.h +++ b/include/configs/omap3_zoom2.h @@ -252,7 +252,6 @@  #define CONFIG_SYS_FLASH_WRITE_TOUT	(100 * CONFIG_SYS_HZ)  #ifndef __ASSEMBLY__ -extern gpmc_csx_t *nand_cs_base;  extern gpmc_t *gpmc_cfg_base;  extern unsigned int boot_flash_base;  extern volatile unsigned int boot_flash_env_addr; |