1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#include <linux/init.h>
27#include <linux/platform_device.h>
28#include <linux/i2c.h>
29#include <linux/platform_data/at24.h>
30#include <linux/mtd/mtd.h>
31#include <linux/mtd/nand.h>
32#include <linux/mtd/partitions.h>
33
34#include <asm/mach-types.h>
35#include <asm/mach/arch.h>
36#include <asm/mach/flash.h>
37
38#include <mach/common.h>
39#include <linux/platform_data/i2c-davinci.h>
40#include <mach/serial.h>
41#include <mach/mux.h>
42#include <linux/platform_data/usb-davinci.h>
43
44#include "davinci.h"
45
46#define SFFSDR_PHY_ID "davinci_mdio-0:01"
47static struct mtd_partition davinci_sffsdr_nandflash_partition[] = {
48
49
50
51
52
53
54 {
55 .name = "Linux Kernel",
56 .offset = 32 * SZ_128K,
57 .size = 16 * SZ_128K,
58 .mask_flags = MTD_WRITEABLE,
59 },
60 {
61 .name = "Linux ROOT",
62 .offset = MTDPART_OFS_APPEND,
63 .size = 256 * SZ_128K,
64 .mask_flags = 0,
65 },
66};
67
68static struct flash_platform_data davinci_sffsdr_nandflash_data = {
69 .parts = davinci_sffsdr_nandflash_partition,
70 .nr_parts = ARRAY_SIZE(davinci_sffsdr_nandflash_partition),
71};
72
73static struct resource davinci_sffsdr_nandflash_resource[] = {
74 {
75 .start = DM644X_ASYNC_EMIF_DATA_CE0_BASE,
76 .end = DM644X_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
77 .flags = IORESOURCE_MEM,
78 }, {
79 .start = DM644X_ASYNC_EMIF_CONTROL_BASE,
80 .end = DM644X_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
81 .flags = IORESOURCE_MEM,
82 },
83};
84
85static struct platform_device davinci_sffsdr_nandflash_device = {
86 .name = "davinci_nand",
87 .id = 0,
88 .dev = {
89 .platform_data = &davinci_sffsdr_nandflash_data,
90 },
91 .num_resources = ARRAY_SIZE(davinci_sffsdr_nandflash_resource),
92 .resource = davinci_sffsdr_nandflash_resource,
93};
94
95static struct at24_platform_data eeprom_info = {
96 .byte_len = (64*1024) / 8,
97 .page_size = 32,
98 .flags = AT24_FLAG_ADDR16,
99};
100
101static struct i2c_board_info __initdata i2c_info[] = {
102 {
103 I2C_BOARD_INFO("24lc64", 0x50),
104 .platform_data = &eeprom_info,
105 },
106
107
108
109
110
111};
112
113static struct davinci_i2c_platform_data i2c_pdata = {
114 .bus_freq = 20 ,
115 .bus_delay = 100 ,
116};
117
118static void __init sffsdr_init_i2c(void)
119{
120 davinci_init_i2c(&i2c_pdata);
121 i2c_register_board_info(1, i2c_info, ARRAY_SIZE(i2c_info));
122}
123
124static struct platform_device *davinci_sffsdr_devices[] __initdata = {
125 &davinci_sffsdr_nandflash_device,
126};
127
128static struct davinci_uart_config uart_config __initdata = {
129 .enabled_uarts = (1 << 0),
130};
131
132static void __init davinci_sffsdr_map_io(void)
133{
134 dm644x_init();
135}
136
137static __init void davinci_sffsdr_init(void)
138{
139 struct davinci_soc_info *soc_info = &davinci_soc_info;
140
141 platform_add_devices(davinci_sffsdr_devices,
142 ARRAY_SIZE(davinci_sffsdr_devices));
143 sffsdr_init_i2c();
144 davinci_serial_init(&uart_config);
145 soc_info->emac_pdata->phy_id = SFFSDR_PHY_ID;
146 davinci_setup_usb(0, 0);
147
148
149 davinci_cfg_reg(DM644X_VLYNQEN);
150 davinci_cfg_reg(DM644X_VLYNQWD);
151}
152
153MACHINE_START(SFFSDR, "Lyrtech SFFSDR")
154
155 .atag_offset = 0x100,
156 .map_io = davinci_sffsdr_map_io,
157 .init_irq = davinci_irq_init,
158 .init_time = davinci_timer_init,
159 .init_machine = davinci_sffsdr_init,
160 .init_late = davinci_init_late,
161 .dma_zone_size = SZ_128M,
162 .restart = davinci_restart,
163MACHINE_END
164