2 * arch/arm/mach-orion5x/ts78xx-setup.c
4 * Maintainer: Alexander Clouter <alex@digriz.org.uk>
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/mtd/physmap.h>
15 #include <linux/mv643xx_eth.h>
16 #include <linux/ata_platform.h>
17 #include <linux/m48t86.h>
18 #include <asm/mach-types.h>
19 #include <asm/mach/arch.h>
20 #include <asm/mach/map.h>
21 #include <mach/orion5x.h>
25 /*****************************************************************************
27 ****************************************************************************/
30 * FPGA - lives where the PCI bus would be at ORION5X_PCI_MEM_PHYS_BASE
32 #define TS78XX_FPGA_REGS_PHYS_BASE 0xe8000000
33 #define TS78XX_FPGA_REGS_VIRT_BASE 0xff900000
34 #define TS78XX_FPGA_REGS_SIZE SZ_1M
36 #define TS78XX_FPGA_REGS_SYSCON_ID (TS78XX_FPGA_REGS_VIRT_BASE | 0x000)
37 #define TS78XX_FPGA_REGS_SYSCON_LCDI (TS78XX_FPGA_REGS_VIRT_BASE | 0x004)
38 #define TS78XX_FPGA_REGS_SYSCON_LCDO (TS78XX_FPGA_REGS_VIRT_BASE | 0x008)
40 #define TS78XX_FPGA_REGS_RTC_CTRL (TS78XX_FPGA_REGS_VIRT_BASE | 0x808)
41 #define TS78XX_FPGA_REGS_RTC_DATA (TS78XX_FPGA_REGS_VIRT_BASE | 0x80c)
44 * 512kB NOR flash Device
46 #define TS78XX_NOR_BOOT_BASE 0xff800000
47 #define TS78XX_NOR_BOOT_SIZE SZ_512K
49 /*****************************************************************************
51 ****************************************************************************/
52 static struct map_desc ts78xx_io_desc
[] __initdata
= {
54 .virtual = TS78XX_FPGA_REGS_VIRT_BASE
,
55 .pfn
= __phys_to_pfn(TS78XX_FPGA_REGS_PHYS_BASE
),
56 .length
= TS78XX_FPGA_REGS_SIZE
,
61 void __init
ts78xx_map_io(void)
64 iotable_init(ts78xx_io_desc
, ARRAY_SIZE(ts78xx_io_desc
));
67 /*****************************************************************************
68 * 512kB NOR Boot Flash - the chip is a M25P40
69 ****************************************************************************/
70 static struct mtd_partition ts78xx_nor_boot_flash_resources
[] = {
74 /* only the first 256kB is used */
76 .mask_flags
= MTD_WRITEABLE
,
80 static struct physmap_flash_data ts78xx_nor_boot_flash_data
= {
82 .parts
= ts78xx_nor_boot_flash_resources
,
83 .nr_parts
= ARRAY_SIZE(ts78xx_nor_boot_flash_resources
),
86 static struct resource ts78xx_nor_boot_flash_resource
= {
87 .flags
= IORESOURCE_MEM
,
88 .start
= TS78XX_NOR_BOOT_BASE
,
89 .end
= TS78XX_NOR_BOOT_BASE
+ TS78XX_NOR_BOOT_SIZE
- 1,
92 static struct platform_device ts78xx_nor_boot_flash
= {
93 .name
= "physmap-flash",
96 .platform_data
= &ts78xx_nor_boot_flash_data
,
99 .resource
= &ts78xx_nor_boot_flash_resource
,
102 /*****************************************************************************
104 ****************************************************************************/
105 static struct mv643xx_eth_platform_data ts78xx_eth_data
= {
106 .phy_addr
= MV643XX_ETH_PHY_ADDR(0),
109 /*****************************************************************************
110 * RTC M48T86 - nicked^Wborrowed from arch/arm/mach-ep93xx/ts72xx.c
111 ****************************************************************************/
112 #ifdef CONFIG_RTC_DRV_M48T86
113 static unsigned char ts78xx_rtc_readbyte(unsigned long addr
)
115 writeb(addr
, TS78XX_FPGA_REGS_RTC_CTRL
);
116 return readb(TS78XX_FPGA_REGS_RTC_DATA
);
119 static void ts78xx_rtc_writebyte(unsigned char value
, unsigned long addr
)
121 writeb(addr
, TS78XX_FPGA_REGS_RTC_CTRL
);
122 writeb(value
, TS78XX_FPGA_REGS_RTC_DATA
);
125 static struct m48t86_ops ts78xx_rtc_ops
= {
126 .readbyte
= ts78xx_rtc_readbyte
,
127 .writebyte
= ts78xx_rtc_writebyte
,
130 static struct platform_device ts78xx_rtc_device
= {
131 .name
= "rtc-m48t86",
134 .platform_data
= &ts78xx_rtc_ops
,
140 * TS uses some of the user storage space on the RTC chip so see if it is
141 * present; as it's an optional feature at purchase time and not all boards
142 * will have it present
144 * I've used the method TS use in their rtc7800.c example for the detection
146 * TODO: track down a guinea pig without an RTC to see if we can work out a
147 * better RTC detection routine
149 static int __init
ts78xx_rtc_init(void)
151 unsigned char tmp_rtc0
, tmp_rtc1
;
153 tmp_rtc0
= ts78xx_rtc_readbyte(126);
154 tmp_rtc1
= ts78xx_rtc_readbyte(127);
156 ts78xx_rtc_writebyte(0x00, 126);
157 ts78xx_rtc_writebyte(0x55, 127);
158 if (ts78xx_rtc_readbyte(127) == 0x55) {
159 ts78xx_rtc_writebyte(0xaa, 127);
160 if (ts78xx_rtc_readbyte(127) == 0xaa
161 && ts78xx_rtc_readbyte(126) == 0x00) {
162 ts78xx_rtc_writebyte(tmp_rtc0
, 126);
163 ts78xx_rtc_writebyte(tmp_rtc1
, 127);
164 platform_device_register(&ts78xx_rtc_device
);
172 static int __init
ts78xx_rtc_init(void)
178 /*****************************************************************************
180 ****************************************************************************/
181 static struct mv_sata_platform_data ts78xx_sata_data
= {
185 /*****************************************************************************
186 * print some information regarding the board
187 ****************************************************************************/
188 static void __init
ts78xx_print_board_id(void)
190 unsigned int board_info
;
192 board_info
= readl(TS78XX_FPGA_REGS_SYSCON_ID
);
193 printk(KERN_INFO
"TS-78xx Info: FPGA rev=%.2x, Board Magic=%.6x, ",
195 (board_info
>> 8) & 0xffffff);
196 board_info
= readl(TS78XX_FPGA_REGS_SYSCON_LCDI
);
197 printk("JP1=%d, JP2=%d\n",
198 (board_info
>> 30) & 0x1,
199 (board_info
>> 31) & 0x1);
202 /*****************************************************************************
204 ****************************************************************************/
205 static struct orion5x_mpp_mode ts78xx_mpp_modes
[] __initdata
= {
207 { 1, MPP_GPIO
}, /* JTAG Clock */
208 { 2, MPP_GPIO
}, /* JTAG Data In */
209 { 3, MPP_GPIO
}, /* Lat ECP2 256 FPGA - PB2B */
210 { 4, MPP_GPIO
}, /* JTAG Data Out */
211 { 5, MPP_GPIO
}, /* JTAG TMS */
212 { 6, MPP_GPIO
}, /* Lat ECP2 256 FPGA - PB31A_CLK4+ */
213 { 7, MPP_GPIO
}, /* Lat ECP2 256 FPGA - PB22B */
229 static void __init
ts78xx_init(void)
232 * Setup basic Orion functions. Need to be called early.
236 ts78xx_print_board_id();
238 orion5x_mpp_conf(ts78xx_mpp_modes
);
241 * MPP[20] PCI Clock Out 1
242 * MPP[21] PCI Clock Out 0
250 * Configure peripherals.
252 orion5x_ehci0_init();
253 orion5x_ehci1_init();
254 orion5x_eth_init(&ts78xx_eth_data
);
255 orion5x_sata_init(&ts78xx_sata_data
);
256 orion5x_uart0_init();
257 orion5x_uart1_init();
260 orion5x_setup_dev_boot_win(TS78XX_NOR_BOOT_BASE
,
261 TS78XX_NOR_BOOT_SIZE
);
262 platform_device_register(&ts78xx_nor_boot_flash
);
264 if (!ts78xx_rtc_init())
265 printk(KERN_INFO
"TS-78xx RTC not detected or enabled\n");
268 MACHINE_START(TS78XX
, "Technologic Systems TS-78xx SBC")
269 /* Maintainer: Alexander Clouter <alex@digriz.org.uk> */
270 .phys_io
= ORION5X_REGS_PHYS_BASE
,
271 .io_pg_offst
= ((ORION5X_REGS_VIRT_BASE
) >> 18) & 0xFFFC,
272 .boot_params
= 0x00000100,
273 .init_machine
= ts78xx_init
,
274 .map_io
= ts78xx_map_io
,
275 .init_irq
= orion5x_init_irq
,
276 .timer
= &orion5x_timer
,