2 * arch/arm/mach-ep93xx/snappercl15.c
3 * Bluewater Systems Snapper CL15 system module
5 * Copyright (C) 2009 Bluewater Systems Ltd
6 * Author: Ryan Mallon <ryan@bluewatersys.com>
8 * NAND code adapted from driver by:
9 * Andre Renaud <andre@bluewatersys.com>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or (at
15 * your option) any later version.
19 #include <linux/platform_device.h>
20 #include <linux/kernel.h>
21 #include <linux/init.h>
23 #include <linux/gpio.h>
24 #include <linux/i2c.h>
25 #include <linux/i2c-gpio.h>
28 #include <linux/mtd/partitions.h>
29 #include <linux/mtd/nand.h>
31 #include <mach/hardware.h>
34 #include <asm/mach-types.h>
35 #include <asm/mach/arch.h>
37 #define SNAPPERCL15_NAND_BASE (EP93XX_CS7_PHYS_BASE + SZ_16M)
39 #define SNAPPERCL15_NAND_WPN (1 << 8) /* Write protect (active low) */
40 #define SNAPPERCL15_NAND_ALE (1 << 9) /* Address latch */
41 #define SNAPPERCL15_NAND_CLE (1 << 10) /* Command latch */
42 #define SNAPPERCL15_NAND_CEN (1 << 11) /* Chip enable (active low) */
43 #define SNAPPERCL15_NAND_RDY (1 << 14) /* Device ready */
45 #define NAND_CTRL_ADDR(chip) (chip->IO_ADDR_W + 0x40)
47 static void snappercl15_nand_cmd_ctrl(struct mtd_info
*mtd
, int cmd
,
50 struct nand_chip
*chip
= mtd
->priv
;
51 static u16 nand_state
= SNAPPERCL15_NAND_WPN
;
54 if (ctrl
& NAND_CTRL_CHANGE
) {
55 set
= SNAPPERCL15_NAND_CEN
| SNAPPERCL15_NAND_WPN
;
58 set
&= ~SNAPPERCL15_NAND_CEN
;
60 set
|= SNAPPERCL15_NAND_CLE
;
62 set
|= SNAPPERCL15_NAND_ALE
;
64 nand_state
&= ~(SNAPPERCL15_NAND_CEN
|
65 SNAPPERCL15_NAND_CLE
|
66 SNAPPERCL15_NAND_ALE
);
68 __raw_writew(nand_state
, NAND_CTRL_ADDR(chip
));
71 if (cmd
!= NAND_CMD_NONE
)
72 __raw_writew((cmd
& 0xff) | nand_state
, chip
->IO_ADDR_W
);
75 static int snappercl15_nand_dev_ready(struct mtd_info
*mtd
)
77 struct nand_chip
*chip
= mtd
->priv
;
79 return !!(__raw_readw(NAND_CTRL_ADDR(chip
)) & SNAPPERCL15_NAND_RDY
);
82 static const char *snappercl15_nand_part_probes
[] = {"cmdlinepart", NULL
};
84 static struct mtd_partition snappercl15_nand_parts
[] = {
92 .offset
= MTDPART_OFS_APPEND
,
93 .size
= MTDPART_SIZ_FULL
,
97 static struct platform_nand_data snappercl15_nand_data
= {
100 .part_probe_types
= snappercl15_nand_part_probes
,
101 .partitions
= snappercl15_nand_parts
,
102 .nr_partitions
= ARRAY_SIZE(snappercl15_nand_parts
),
103 .options
= NAND_NO_AUTOINCR
,
107 .dev_ready
= snappercl15_nand_dev_ready
,
108 .cmd_ctrl
= snappercl15_nand_cmd_ctrl
,
112 static struct resource snappercl15_nand_resource
[] = {
114 .start
= SNAPPERCL15_NAND_BASE
,
115 .end
= SNAPPERCL15_NAND_BASE
+ SZ_4K
- 1,
116 .flags
= IORESOURCE_MEM
,
120 static struct platform_device snappercl15_nand_device
= {
123 .dev
.platform_data
= &snappercl15_nand_data
,
124 .resource
= snappercl15_nand_resource
,
125 .num_resources
= ARRAY_SIZE(snappercl15_nand_resource
),
128 static struct ep93xx_eth_data __initdata snappercl15_eth_data
= {
132 static struct i2c_gpio_platform_data __initdata snappercl15_i2c_gpio_data
= {
133 .sda_pin
= EP93XX_GPIO_LINE_EEDAT
,
134 .sda_is_open_drain
= 0,
135 .scl_pin
= EP93XX_GPIO_LINE_EECLK
,
136 .scl_is_open_drain
= 0,
141 static struct i2c_board_info __initdata snappercl15_i2c_data
[] = {
144 I2C_BOARD_INFO("tlv320aic23", 0x1a),
148 static struct ep93xxfb_mach_info __initdata snappercl15_fb_info
= {
149 .num_modes
= EP93XXFB_USE_MODEDB
,
153 static void __init
snappercl15_init_machine(void)
155 ep93xx_init_devices();
156 ep93xx_register_eth(&snappercl15_eth_data
, 1);
157 ep93xx_register_i2c(&snappercl15_i2c_gpio_data
, snappercl15_i2c_data
,
158 ARRAY_SIZE(snappercl15_i2c_data
));
159 ep93xx_register_fb(&snappercl15_fb_info
);
160 ep93xx_register_i2s();
161 platform_device_register(&snappercl15_nand_device
);
164 MACHINE_START(SNAPPER_CL15
, "Bluewater Systems Snapper CL15")
165 /* Maintainer: Ryan Mallon <ryan@bluewatersys.com> */
166 .phys_io
= EP93XX_APB_PHYS_BASE
,
167 .io_pg_offst
= ((EP93XX_APB_VIRT_BASE
) >> 18) & 0xfffc,
168 .boot_params
= EP93XX_SDCE0_PHYS_BASE
+ 0x100,
169 .map_io
= ep93xx_map_io
,
170 .init_irq
= ep93xx_init_irq
,
171 .timer
= &ep93xx_timer
,
172 .init_machine
= snappercl15_init_machine
,