diff options
Diffstat (limited to 'include/configs')
| -rw-r--r-- | include/configs/dlvision-10g.h | 6 | ||||
| -rw-r--r-- | include/configs/io.h | 5 | ||||
| -rw-r--r-- | include/configs/io64.h | 6 | ||||
| -rw-r--r-- | include/configs/iocon.h | 5 | ||||
| -rw-r--r-- | include/configs/neo.h | 5 | 
5 files changed, 27 insertions, 0 deletions
| diff --git a/include/configs/dlvision-10g.h b/include/configs/dlvision-10g.h index 17391cddc..d4011a1e8 100644 --- a/include/configs/dlvision-10g.h +++ b/include/configs/dlvision-10g.h @@ -123,6 +123,12 @@  #define CONFIG_SYS_FPGA_COUNT		2 +#define CONFIG_SYS_FPGA_PTR { \ +	(struct ihs_fpga *)CONFIG_SYS_FPGA0_BASE, \ +	(struct ihs_fpga *)CONFIG_SYS_FPGA1_BASE } + +#define CONFIG_SYS_FPGA_COMMON +  #define CONFIG_SYS_LATCH0_RESET		0xffff  #define CONFIG_SYS_LATCH0_BOOT		0xffff  #define CONFIG_SYS_LATCH1_RESET		0xffcf diff --git a/include/configs/io.h b/include/configs/io.h index 33743e61a..27d1b0f0a 100644 --- a/include/configs/io.h +++ b/include/configs/io.h @@ -230,6 +230,11 @@  #define CONFIG_SYS_FPGA_COUNT		1 +#define CONFIG_SYS_FPGA_PTR \ +	{ (struct ihs_fpga *)CONFIG_SYS_FPGA0_BASE } + +#define CONFIG_SYS_FPGA_COMMON +  /* Memory Bank 3 (Latches) initialization */  #define CONFIG_SYS_LATCH_BASE		0x7f200000  #define CONFIG_SYS_EBC_PB3AP		0xa2015480 diff --git a/include/configs/io64.h b/include/configs/io64.h index dcd1b82e2..f110b7060 100644 --- a/include/configs/io64.h +++ b/include/configs/io64.h @@ -498,6 +498,12 @@  #define CONFIG_SYS_FPGA_COUNT		2 +#define CONFIG_SYS_FPGA_PTR { \ +	(struct ihs_fpga *)CONFIG_SYS_FPGA0_BASE, \ +	(struct ihs_fpga *)CONFIG_SYS_FPGA1_BASE } + +#define CONFIG_SYS_FPGA_COMMON +  #define CONFIG_SYS_LATCH0_RESET		0xffff  #define CONFIG_SYS_LATCH0_BOOT		0xffff  #define CONFIG_SYS_LATCH1_RESET		0xffbf diff --git a/include/configs/iocon.h b/include/configs/iocon.h index 32d9050ad..67a7ab9ee 100644 --- a/include/configs/iocon.h +++ b/include/configs/iocon.h @@ -236,6 +236,11 @@ int fpga_gpio_get(int pin);  #define CONFIG_SYS_FPGA_COUNT		1 +#define CONFIG_SYS_FPGA_PTR \ +	{ (struct ihs_fpga *)CONFIG_SYS_FPGA0_BASE } + +#define CONFIG_SYS_FPGA_COMMON +  /* Memory Bank 3 (Latches) initialization */  #define CONFIG_SYS_LATCH_BASE		0x7f200000  #define CONFIG_SYS_EBC_PB3AP		0x02025080 diff --git a/include/configs/neo.h b/include/configs/neo.h index 5abb8b1a7..91871f718 100644 --- a/include/configs/neo.h +++ b/include/configs/neo.h @@ -222,6 +222,11 @@  #define CONFIG_SYS_FPGA_COUNT		1 +#define CONFIG_SYS_FPGA_PTR \ +	{ (struct ihs_fpga *)CONFIG_SYS_FPGA0_BASE } + +#define CONFIG_SYS_FPGA_COMMON +  /* Memory Bank 3 (Latches) initialization                      */  #define CONFIG_SYS_LATCH_BASE		0x7f200000  #define CONFIG_SYS_EBC_PB3AP		0x92015480 |