blob: 14d5103dafc998240fd727a242e8a9145a8a24df [file] [log] [blame]
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001/*
2 * linux/arch/arm/mach-pxa/gumstix.c
3 *
4 * Support for the Gumstix motherboards.
5 *
6 * Original Author: Craig Hughes
7 * Created: Feb 14, 2008
8 * Copyright: Craig Hughes
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * Implemented based on lubbock.c by Nicolas Pitre and code from Craig
15 * Hughes
16 */
17
18#include <linux/module.h>
19#include <linux/kernel.h>
20#include <linux/init.h>
21#include <linux/platform_device.h>
22#include <linux/interrupt.h>
Jaya Kumard8ad7852008-08-16 04:07:18 +010023#include <linux/delay.h>
Jaya Kumar90b8fc32008-03-15 05:11:07 +010024#include <linux/mtd/mtd.h>
25#include <linux/mtd/partitions.h>
Jaya Kumard8ad7852008-08-16 04:07:18 +010026#include <linux/gpio.h>
27#include <linux/err.h>
28#include <linux/clk.h>
Jaya Kumar90b8fc32008-03-15 05:11:07 +010029
30#include <asm/setup.h>
31#include <asm/memory.h>
32#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010033#include <mach/hardware.h>
Jaya Kumar90b8fc32008-03-15 05:11:07 +010034#include <asm/irq.h>
35#include <asm/sizes.h>
36
37#include <asm/mach/arch.h>
38#include <asm/mach/map.h>
39#include <asm/mach/irq.h>
40#include <asm/mach/flash.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010041#include <mach/mmc.h>
42#include <mach/udc.h>
43#include <mach/gumstix.h>
Jaya Kumar90b8fc32008-03-15 05:11:07 +010044
Russell Kinga09e64f2008-08-05 16:14:15 +010045#include <mach/pxa-regs.h>
46#include <mach/pxa2xx-regs.h>
Jaya Kumard8ad7852008-08-16 04:07:18 +010047#include <mach/mfp-pxa25x.h>
Jaya Kumar90b8fc32008-03-15 05:11:07 +010048
49#include "generic.h"
50
51static struct resource flash_resource = {
52 .start = 0x00000000,
53 .end = SZ_64M - 1,
54 .flags = IORESOURCE_MEM,
55};
56
57static struct mtd_partition gumstix_partitions[] = {
58 {
59 .name = "Bootloader",
60 .size = 0x00040000,
61 .offset = 0,
62 .mask_flags = MTD_WRITEABLE /* force read-only */
63 } , {
64 .name = "rootfs",
65 .size = MTDPART_SIZ_FULL,
66 .offset = MTDPART_OFS_APPEND
67 }
68};
69
70static struct flash_platform_data gumstix_flash_data = {
71 .map_name = "cfi_probe",
72 .parts = gumstix_partitions,
73 .nr_parts = ARRAY_SIZE(gumstix_partitions),
74 .width = 2,
75};
76
77static struct platform_device gumstix_flash_device = {
78 .name = "pxa2xx-flash",
79 .id = 0,
80 .dev = {
81 .platform_data = &gumstix_flash_data,
82 },
83 .resource = &flash_resource,
84 .num_resources = 1,
85};
86
87static struct platform_device *devices[] __initdata = {
88 &gumstix_flash_device,
89};
90
91#ifdef CONFIG_MMC_PXA
Jaya Kumar90b8fc32008-03-15 05:11:07 +010092static struct pxamci_platform_data gumstix_mci_platform_data = {
93 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
Jaya Kumar90b8fc32008-03-15 05:11:07 +010094};
95
96static void __init gumstix_mmc_init(void)
97{
98 pxa_set_mci_info(&gumstix_mci_platform_data);
99}
100#else
101static void __init gumstix_mmc_init(void)
102{
Jaya Kumard8ad7852008-08-16 04:07:18 +0100103 pr_debug("Gumstix mmc disabled\n");
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100104}
105#endif
106
Jaya Kumard8ad7852008-08-16 04:07:18 +0100107#ifdef CONFIG_USB_GADGET_PXA25X
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100108static struct pxa2xx_udc_mach_info gumstix_udc_info __initdata = {
109 .gpio_vbus = GPIO_GUMSTIX_USB_GPIOn,
110 .gpio_pullup = GPIO_GUMSTIX_USB_GPIOx,
111};
112
113static void __init gumstix_udc_init(void)
114{
115 pxa_set_udc_info(&gumstix_udc_info);
116}
117#else
118static void gumstix_udc_init(void)
119{
Jaya Kumard8ad7852008-08-16 04:07:18 +0100120 pr_debug("Gumstix udc is disabled\n");
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100121}
122#endif
123
Jaya Kumard8ad7852008-08-16 04:07:18 +0100124#ifdef CONFIG_BT
125/* Normally, the bootloader would have enabled this 32kHz clock but many
126** boards still have u-boot 1.1.4 so we check if it has been turned on and
127** if not, we turn it on with a warning message. */
128static void gumstix_setup_bt_clock(void)
129{
130 int timeout = 500;
131
132 if (!(OSCC & OSCC_OOK))
133 pr_warning("32kHz clock was not on. Bootloader may need to "
134 "be updated\n");
135 else
136 return;
137
138 OSCC |= OSCC_OON;
139 do {
140 if (OSCC & OSCC_OOK)
141 break;
142 udelay(1);
143 } while (--timeout);
144 if (!timeout)
145 pr_err("Failed to start 32kHz clock\n");
146}
147
148static void __init gumstix_bluetooth_init(void)
149{
150 int err;
151
152 gumstix_setup_bt_clock();
153
154 err = gpio_request(GPIO_GUMSTIX_BTRESET, "BTRST");
155 if (err) {
156 pr_err("gumstix: failed request gpio for bluetooth reset\n");
157 return;
158 }
159
160 err = gpio_direction_output(GPIO_GUMSTIX_BTRESET, 1);
161 if (err) {
162 pr_err("gumstix: can't reset bluetooth\n");
163 return;
164 }
165 gpio_set_value(GPIO_GUMSTIX_BTRESET, 0);
166 udelay(100);
167 gpio_set_value(GPIO_GUMSTIX_BTRESET, 1);
168}
169#else
170static void gumstix_bluetooth_init(void)
171{
172 pr_debug("Gumstix Bluetooth is disabled\n");
173}
174#endif
175
176static unsigned long gumstix_pin_config[] __initdata = {
177 GPIO12_32KHz,
178 /* BTUART */
179 GPIO42_HWUART_RXD,
180 GPIO43_HWUART_TXD,
181 GPIO44_HWUART_CTS,
182 GPIO45_HWUART_RTS,
183 /* MMC */
184 GPIO6_MMC_CLK,
185 GPIO53_MMC_CLK,
186 GPIO8_MMC_CS0,
187 /* these are used by AM200EPD */
188 GPIO51_GPIO,
189 GPIO49_GPIO,
190 GPIO48_GPIO,
191 GPIO32_GPIO,
192 GPIO17_GPIO,
193 GPIO16_GPIO,
194};
195
Jaya Kumar3332b0c2008-12-09 22:14:29 +0800196int __attribute__((weak)) am200_init(void)
197{
198 return 0;
199}
200
201static void __init carrier_board_init(void)
202{
203 /*
204 * put carrier/expansion board init here if
205 * they cannot be detected programatically
206 */
207 am200_init();
208}
209
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100210static void __init gumstix_init(void)
211{
Jaya Kumard8ad7852008-08-16 04:07:18 +0100212 pxa2xx_mfp_config(ARRAY_AND_SIZE(gumstix_pin_config));
213
214 gumstix_bluetooth_init();
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100215 gumstix_udc_init();
216 gumstix_mmc_init();
217 (void) platform_add_devices(devices, ARRAY_SIZE(devices));
Jaya Kumar3332b0c2008-12-09 22:14:29 +0800218 carrier_board_init();
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100219}
220
221MACHINE_START(GUMSTIX, "Gumstix")
222 .phys_io = 0x40000000,
223 .boot_params = 0xa0000100, /* match u-boot bi_boot_params */
224 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
225 .map_io = pxa_map_io,
226 .init_irq = pxa25x_init_irq,
227 .timer = &pxa_timer,
228 .init_machine = gumstix_init,
229MACHINE_END