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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/sysfs.h>
16 #include <linux/platform_device.h>
17 #include <linux/mv643xx_eth.h>
18 #include <linux/ata_platform.h>
19 #include <linux/m48t86.h>
20 #include <linux/mtd/nand.h>
21 #include <linux/mtd/partitions.h>
22 #include <linux/timeriomem-rng.h>
23 #include <asm/mach-types.h>
24 #include <asm/mach/arch.h>
25 #include <asm/mach/map.h>
26 #include <mach/orion5x.h>
29 #include "ts78xx-fpga.h"
31 /*****************************************************************************
33 ****************************************************************************/
36 * FPGA - lives where the PCI bus would be at ORION5X_PCI_MEM_PHYS_BASE
38 #define TS78XX_FPGA_REGS_PHYS_BASE 0xe8000000
39 #define TS78XX_FPGA_REGS_VIRT_BASE IOMEM(0xff900000)
40 #define TS78XX_FPGA_REGS_SIZE SZ_1M
42 static struct ts78xx_fpga_data ts78xx_fpga
= {
45 /* .supports = ... - populated by ts78xx_fpga_supports() */
48 /*****************************************************************************
50 ****************************************************************************/
51 static struct map_desc ts78xx_io_desc
[] __initdata
= {
53 .virtual = (unsigned long)TS78XX_FPGA_REGS_VIRT_BASE
,
54 .pfn
= __phys_to_pfn(TS78XX_FPGA_REGS_PHYS_BASE
),
55 .length
= TS78XX_FPGA_REGS_SIZE
,
60 static void __init
ts78xx_map_io(void)
63 iotable_init(ts78xx_io_desc
, ARRAY_SIZE(ts78xx_io_desc
));
66 /*****************************************************************************
68 ****************************************************************************/
69 static struct mv643xx_eth_platform_data ts78xx_eth_data
= {
70 .phy_addr
= MV643XX_ETH_PHY_ADDR(0),
73 /*****************************************************************************
75 ****************************************************************************/
76 static struct mv_sata_platform_data ts78xx_sata_data
= {
80 /*****************************************************************************
81 * RTC M48T86 - nicked^Wborrowed from arch/arm/mach-ep93xx/ts72xx.c
82 ****************************************************************************/
83 #define TS_RTC_CTRL (TS78XX_FPGA_REGS_VIRT_BASE + 0x808)
84 #define TS_RTC_DATA (TS78XX_FPGA_REGS_VIRT_BASE + 0x80c)
86 static unsigned char ts78xx_ts_rtc_readbyte(unsigned long addr
)
88 writeb(addr
, TS_RTC_CTRL
);
89 return readb(TS_RTC_DATA
);
92 static void ts78xx_ts_rtc_writebyte(unsigned char value
, unsigned long addr
)
94 writeb(addr
, TS_RTC_CTRL
);
95 writeb(value
, TS_RTC_DATA
);
98 static struct m48t86_ops ts78xx_ts_rtc_ops
= {
99 .readbyte
= ts78xx_ts_rtc_readbyte
,
100 .writebyte
= ts78xx_ts_rtc_writebyte
,
103 static struct platform_device ts78xx_ts_rtc_device
= {
104 .name
= "rtc-m48t86",
107 .platform_data
= &ts78xx_ts_rtc_ops
,
113 * TS uses some of the user storage space on the RTC chip so see if it is
114 * present; as it's an optional feature at purchase time and not all boards
115 * will have it present
117 * I've used the method TS use in their rtc7800.c example for the detection
119 * TODO: track down a guinea pig without an RTC to see if we can work out a
120 * better RTC detection routine
122 static int ts78xx_ts_rtc_load(void)
125 unsigned char tmp_rtc0
, tmp_rtc1
;
127 tmp_rtc0
= ts78xx_ts_rtc_readbyte(126);
128 tmp_rtc1
= ts78xx_ts_rtc_readbyte(127);
130 ts78xx_ts_rtc_writebyte(0x00, 126);
131 ts78xx_ts_rtc_writebyte(0x55, 127);
132 if (ts78xx_ts_rtc_readbyte(127) == 0x55) {
133 ts78xx_ts_rtc_writebyte(0xaa, 127);
134 if (ts78xx_ts_rtc_readbyte(127) == 0xaa
135 && ts78xx_ts_rtc_readbyte(126) == 0x00) {
136 ts78xx_ts_rtc_writebyte(tmp_rtc0
, 126);
137 ts78xx_ts_rtc_writebyte(tmp_rtc1
, 127);
139 if (ts78xx_fpga
.supports
.ts_rtc
.init
== 0) {
140 rc
= platform_device_register(&ts78xx_ts_rtc_device
);
142 ts78xx_fpga
.supports
.ts_rtc
.init
= 1;
144 rc
= platform_device_add(&ts78xx_ts_rtc_device
);
147 pr_info("RTC could not be registered: %d\n",
153 pr_info("RTC not found\n");
157 static void ts78xx_ts_rtc_unload(void)
159 platform_device_del(&ts78xx_ts_rtc_device
);
162 /*****************************************************************************
164 ****************************************************************************/
165 #define TS_NAND_CTRL (TS78XX_FPGA_REGS_VIRT_BASE + 0x800) /* VIRT */
166 #define TS_NAND_DATA (TS78XX_FPGA_REGS_PHYS_BASE + 0x804) /* PHYS */
169 * hardware specific access to control-lines
172 * NAND_NCE: bit 0 -> bit 2
173 * NAND_CLE: bit 1 -> bit 1
174 * NAND_ALE: bit 2 -> bit 0
176 static void ts78xx_ts_nand_cmd_ctrl(struct mtd_info
*mtd
, int cmd
,
179 struct nand_chip
*this = mtd
->priv
;
181 if (ctrl
& NAND_CTRL_CHANGE
) {
184 bits
= (ctrl
& NAND_NCE
) << 2;
185 bits
|= ctrl
& NAND_CLE
;
186 bits
|= (ctrl
& NAND_ALE
) >> 2;
188 writeb((readb(TS_NAND_CTRL
) & ~0x7) | bits
, TS_NAND_CTRL
);
191 if (cmd
!= NAND_CMD_NONE
)
192 writeb(cmd
, this->IO_ADDR_W
);
195 static int ts78xx_ts_nand_dev_ready(struct mtd_info
*mtd
)
197 return readb(TS_NAND_CTRL
) & 0x20;
200 static void ts78xx_ts_nand_write_buf(struct mtd_info
*mtd
,
201 const uint8_t *buf
, int len
)
203 struct nand_chip
*chip
= mtd
->priv
;
204 void __iomem
*io_base
= chip
->IO_ADDR_W
;
205 unsigned long off
= ((unsigned long)buf
& 3);
209 sz
= min_t(int, 4 - off
, len
);
210 writesb(io_base
, buf
, sz
);
217 u32
*buf32
= (u32
*)buf
;
218 writesl(io_base
, buf32
, sz
);
224 writesb(io_base
, buf
, len
);
227 static void ts78xx_ts_nand_read_buf(struct mtd_info
*mtd
,
228 uint8_t *buf
, int len
)
230 struct nand_chip
*chip
= mtd
->priv
;
231 void __iomem
*io_base
= chip
->IO_ADDR_R
;
232 unsigned long off
= ((unsigned long)buf
& 3);
236 sz
= min_t(int, 4 - off
, len
);
237 readsb(io_base
, buf
, sz
);
244 u32
*buf32
= (u32
*)buf
;
245 readsl(io_base
, buf32
, sz
);
251 readsb(io_base
, buf
, len
);
254 static struct mtd_partition ts78xx_ts_nand_parts
[] = {
259 .mask_flags
= MTD_WRITEABLE
,
262 .offset
= MTDPART_OFS_APPEND
,
266 .offset
= MTDPART_OFS_APPEND
,
270 .offset
= MTDPART_OFS_APPEND
,
271 .size
= MTDPART_SIZ_FULL
,
275 static struct platform_nand_data ts78xx_ts_nand_data
= {
278 .partitions
= ts78xx_ts_nand_parts
,
279 .nr_partitions
= ARRAY_SIZE(ts78xx_ts_nand_parts
),
281 .bbt_options
= NAND_BBT_USE_FLASH
,
285 * The HW ECC offloading functions, used to give about a 9%
286 * performance increase for 'dd if=/dev/mtdblockX' and 5% for
287 * nanddump. This all however was changed by git commit
288 * e6cf5df1838c28bb060ac45b5585e48e71bbc740 so now there is
289 * no performance advantage to be had so we no longer bother
291 .cmd_ctrl
= ts78xx_ts_nand_cmd_ctrl
,
292 .dev_ready
= ts78xx_ts_nand_dev_ready
,
293 .write_buf
= ts78xx_ts_nand_write_buf
,
294 .read_buf
= ts78xx_ts_nand_read_buf
,
298 static struct resource ts78xx_ts_nand_resources
299 = DEFINE_RES_MEM(TS_NAND_DATA
, 4);
301 static struct platform_device ts78xx_ts_nand_device
= {
305 .platform_data
= &ts78xx_ts_nand_data
,
307 .resource
= &ts78xx_ts_nand_resources
,
311 static int ts78xx_ts_nand_load(void)
315 if (ts78xx_fpga
.supports
.ts_nand
.init
== 0) {
316 rc
= platform_device_register(&ts78xx_ts_nand_device
);
318 ts78xx_fpga
.supports
.ts_nand
.init
= 1;
320 rc
= platform_device_add(&ts78xx_ts_nand_device
);
323 pr_info("NAND could not be registered: %d\n", rc
);
327 static void ts78xx_ts_nand_unload(void)
329 platform_device_del(&ts78xx_ts_nand_device
);
332 /*****************************************************************************
334 ****************************************************************************/
335 #define TS_RNG_DATA (TS78XX_FPGA_REGS_PHYS_BASE | 0x044)
337 static struct resource ts78xx_ts_rng_resource
338 = DEFINE_RES_MEM(TS_RNG_DATA
, 4);
340 static struct timeriomem_rng_data ts78xx_ts_rng_data
= {
341 .period
= 1000000, /* one second */
344 static struct platform_device ts78xx_ts_rng_device
= {
345 .name
= "timeriomem_rng",
348 .platform_data
= &ts78xx_ts_rng_data
,
350 .resource
= &ts78xx_ts_rng_resource
,
354 static int ts78xx_ts_rng_load(void)
358 if (ts78xx_fpga
.supports
.ts_rng
.init
== 0) {
359 rc
= platform_device_register(&ts78xx_ts_rng_device
);
361 ts78xx_fpga
.supports
.ts_rng
.init
= 1;
363 rc
= platform_device_add(&ts78xx_ts_rng_device
);
366 pr_info("RNG could not be registered: %d\n", rc
);
370 static void ts78xx_ts_rng_unload(void)
372 platform_device_del(&ts78xx_ts_rng_device
);
375 /*****************************************************************************
376 * FPGA 'hotplug' support code
377 ****************************************************************************/
378 static void ts78xx_fpga_devices_zero_init(void)
380 ts78xx_fpga
.supports
.ts_rtc
.init
= 0;
381 ts78xx_fpga
.supports
.ts_nand
.init
= 0;
382 ts78xx_fpga
.supports
.ts_rng
.init
= 0;
385 static void ts78xx_fpga_supports(void)
387 /* TODO: put this 'table' into ts78xx-fpga.h */
388 switch (ts78xx_fpga
.id
) {
398 ts78xx_fpga
.supports
.ts_rtc
.present
= 1;
399 ts78xx_fpga
.supports
.ts_nand
.present
= 1;
400 ts78xx_fpga
.supports
.ts_rng
.present
= 1;
403 /* enable devices if magic matches */
404 switch ((ts78xx_fpga
.id
>> 8) & 0xffffff) {
405 case TS7800_FPGA_MAGIC
:
406 pr_warn("unrecognised FPGA revision 0x%.2x\n",
407 ts78xx_fpga
.id
& 0xff);
408 ts78xx_fpga
.supports
.ts_rtc
.present
= 1;
409 ts78xx_fpga
.supports
.ts_nand
.present
= 1;
410 ts78xx_fpga
.supports
.ts_rng
.present
= 1;
413 ts78xx_fpga
.supports
.ts_rtc
.present
= 0;
414 ts78xx_fpga
.supports
.ts_nand
.present
= 0;
415 ts78xx_fpga
.supports
.ts_rng
.present
= 0;
420 static int ts78xx_fpga_load_devices(void)
424 if (ts78xx_fpga
.supports
.ts_rtc
.present
== 1) {
425 tmp
= ts78xx_ts_rtc_load();
427 ts78xx_fpga
.supports
.ts_rtc
.present
= 0;
430 if (ts78xx_fpga
.supports
.ts_nand
.present
== 1) {
431 tmp
= ts78xx_ts_nand_load();
433 ts78xx_fpga
.supports
.ts_nand
.present
= 0;
436 if (ts78xx_fpga
.supports
.ts_rng
.present
== 1) {
437 tmp
= ts78xx_ts_rng_load();
439 ts78xx_fpga
.supports
.ts_rng
.present
= 0;
446 static int ts78xx_fpga_unload_devices(void)
450 if (ts78xx_fpga
.supports
.ts_rtc
.present
== 1)
451 ts78xx_ts_rtc_unload();
452 if (ts78xx_fpga
.supports
.ts_nand
.present
== 1)
453 ts78xx_ts_nand_unload();
454 if (ts78xx_fpga
.supports
.ts_rng
.present
== 1)
455 ts78xx_ts_rng_unload();
460 static int ts78xx_fpga_load(void)
462 ts78xx_fpga
.id
= readl(TS78XX_FPGA_REGS_VIRT_BASE
);
464 pr_info("FPGA magic=0x%.6x, rev=0x%.2x\n",
465 (ts78xx_fpga
.id
>> 8) & 0xffffff,
466 ts78xx_fpga
.id
& 0xff);
468 ts78xx_fpga_supports();
470 if (ts78xx_fpga_load_devices()) {
471 ts78xx_fpga
.state
= -1;
478 static int ts78xx_fpga_unload(void)
480 unsigned int fpga_id
;
482 fpga_id
= readl(TS78XX_FPGA_REGS_VIRT_BASE
);
485 * There does not seem to be a feasible way to block access to the GPIO
486 * pins from userspace (/dev/mem). This if clause should hopefully warn
487 * those foolish enough not to follow 'policy' :)
489 * UrJTAG SVN since r1381 can be used to reprogram the FPGA
491 if (ts78xx_fpga
.id
!= fpga_id
) {
492 pr_err("FPGA magic/rev mismatch\n"
493 "TS-78xx FPGA: was 0x%.6x/%.2x but now 0x%.6x/%.2x\n",
494 (ts78xx_fpga
.id
>> 8) & 0xffffff, ts78xx_fpga
.id
& 0xff,
495 (fpga_id
>> 8) & 0xffffff, fpga_id
& 0xff);
496 ts78xx_fpga
.state
= -1;
500 if (ts78xx_fpga_unload_devices()) {
501 ts78xx_fpga
.state
= -1;
508 static ssize_t
ts78xx_fpga_show(struct kobject
*kobj
,
509 struct kobj_attribute
*attr
, char *buf
)
511 if (ts78xx_fpga
.state
< 0)
512 return sprintf(buf
, "borked\n");
514 return sprintf(buf
, "%s\n", (ts78xx_fpga
.state
) ? "online" : "offline");
517 static ssize_t
ts78xx_fpga_store(struct kobject
*kobj
,
518 struct kobj_attribute
*attr
, const char *buf
, size_t n
)
522 if (ts78xx_fpga
.state
< 0) {
523 pr_err("FPGA borked, you must powercycle ASAP\n");
527 if (strncmp(buf
, "online", sizeof("online") - 1) == 0)
529 else if (strncmp(buf
, "offline", sizeof("offline") - 1) == 0)
534 if (ts78xx_fpga
.state
== value
)
537 ret
= (ts78xx_fpga
.state
== 0)
539 : ts78xx_fpga_unload();
542 ts78xx_fpga
.state
= value
;
547 static struct kobj_attribute ts78xx_fpga_attr
=
548 __ATTR(ts78xx_fpga
, 0644, ts78xx_fpga_show
, ts78xx_fpga_store
);
550 /*****************************************************************************
552 ****************************************************************************/
553 static unsigned int ts78xx_mpp_modes
[] __initdata
= {
555 MPP1_GPIO
, /* JTAG Clock */
556 MPP2_GPIO
, /* JTAG Data In */
557 MPP3_GPIO
, /* Lat ECP2 256 FPGA - PB2B */
558 MPP4_GPIO
, /* JTAG Data Out */
559 MPP5_GPIO
, /* JTAG TMS */
560 MPP6_GPIO
, /* Lat ECP2 256 FPGA - PB31A_CLK4+ */
561 MPP7_GPIO
, /* Lat ECP2 256 FPGA - PB22B */
575 * MPP[20] PCI Clock Out 1
576 * MPP[21] PCI Clock Out 0
585 static void __init
ts78xx_init(void)
590 * Setup basic Orion functions. Need to be called early.
594 orion5x_mpp_conf(ts78xx_mpp_modes
);
597 * Configure peripherals.
599 orion5x_ehci0_init();
600 orion5x_ehci1_init();
601 orion5x_eth_init(&ts78xx_eth_data
);
602 orion5x_sata_init(&ts78xx_sata_data
);
603 orion5x_uart0_init();
604 orion5x_uart1_init();
608 ts78xx_fpga_devices_zero_init();
609 ret
= ts78xx_fpga_load();
610 ret
= sysfs_create_file(firmware_kobj
, &ts78xx_fpga_attr
.attr
);
612 pr_err("sysfs_create_file failed: %d\n", ret
);
615 MACHINE_START(TS78XX
, "Technologic Systems TS-78xx SBC")
616 /* Maintainer: Alexander Clouter <alex@digriz.org.uk> */
617 .atag_offset
= 0x100,
618 .init_machine
= ts78xx_init
,
619 .map_io
= ts78xx_map_io
,
620 .init_early
= orion5x_init_early
,
621 .init_irq
= orion5x_init_irq
,
622 .init_time
= orion5x_timer_init
,
623 .restart
= orion5x_restart
,