blob: 11c900857b1b26043835bfd2c784b00a5283bbe9 [file] [log] [blame]
Kevin Wellsfc982e12010-07-27 08:42:46 -07001/*
2 * arch/arm/mach-lpc32xx/common.c
3 *
4 * Author: Kevin Wells <kevin.wells@nxp.com>
5 *
6 * Copyright (C) 2010 NXP Semiconductors
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 */
18
19#include <linux/init.h>
20#include <linux/platform_device.h>
21#include <linux/interrupt.h>
22#include <linux/irq.h>
23#include <linux/err.h>
24#include <linux/i2c.h>
25#include <linux/i2c-pnx.h>
26#include <linux/io.h>
27
28#include <asm/mach/map.h>
29
30#include <mach/i2c.h>
31#include <mach/hardware.h>
32#include <mach/platform.h>
33#include "common.h"
34
35/*
36 * Watchdog timer
37 */
38static struct resource watchdog_resources[] = {
39 [0] = {
40 .start = LPC32XX_WDTIM_BASE,
41 .end = LPC32XX_WDTIM_BASE + SZ_4K - 1,
42 .flags = IORESOURCE_MEM,
43 },
44};
45
46struct platform_device lpc32xx_watchdog_device = {
47 .name = "pnx4008-watchdog",
48 .id = -1,
49 .num_resources = ARRAY_SIZE(watchdog_resources),
50 .resource = watchdog_resources,
51};
52
53/*
54 * I2C busses
55 */
56static struct i2c_pnx_data i2c0_data = {
57 .name = I2C_CHIP_NAME "1",
58 .base = LPC32XX_I2C1_BASE,
59 .irq = IRQ_LPC32XX_I2C_1,
60};
61
62static struct i2c_pnx_data i2c1_data = {
63 .name = I2C_CHIP_NAME "2",
64 .base = LPC32XX_I2C2_BASE,
65 .irq = IRQ_LPC32XX_I2C_2,
66};
67
68static struct i2c_pnx_data i2c2_data = {
69 .name = "USB-I2C",
70 .base = LPC32XX_OTG_I2C_BASE,
71 .irq = IRQ_LPC32XX_USB_I2C,
72};
73
74struct platform_device lpc32xx_i2c0_device = {
75 .name = "pnx-i2c",
76 .id = 0,
77 .dev = {
78 .platform_data = &i2c0_data,
79 },
80};
81
82struct platform_device lpc32xx_i2c1_device = {
83 .name = "pnx-i2c",
84 .id = 1,
85 .dev = {
86 .platform_data = &i2c1_data,
87 },
88};
89
90struct platform_device lpc32xx_i2c2_device = {
91 .name = "pnx-i2c",
92 .id = 2,
93 .dev = {
94 .platform_data = &i2c2_data,
95 },
96};
97
Wolfram Sang7db2b3772011-03-21 16:14:43 +010098/* TSC (Touch Screen Controller) */
99
100static struct resource lpc32xx_tsc_resources[] = {
101 {
102 .start = LPC32XX_ADC_BASE,
103 .end = LPC32XX_ADC_BASE + SZ_4K - 1,
104 .flags = IORESOURCE_MEM,
105 }, {
106 .start = IRQ_LPC32XX_TS_IRQ,
107 .end = IRQ_LPC32XX_TS_IRQ,
108 .flags = IORESOURCE_IRQ,
109 },
110};
111
112struct platform_device lpc32xx_tsc_device = {
113 .name = "ts-lpc32xx",
114 .id = -1,
115 .num_resources = ARRAY_SIZE(lpc32xx_tsc_resources),
116 .resource = lpc32xx_tsc_resources,
117};
118
Wolfram Sang1c72f9e2011-03-28 16:51:35 +0200119/* RTC */
120
121static struct resource lpc32xx_rtc_resources[] = {
122 {
123 .start = LPC32XX_RTC_BASE,
124 .end = LPC32XX_RTC_BASE + SZ_4K - 1,
125 .flags = IORESOURCE_MEM,
126 },{
127 .start = IRQ_LPC32XX_RTC,
128 .end = IRQ_LPC32XX_RTC,
129 .flags = IORESOURCE_IRQ,
130 },
131};
132
133struct platform_device lpc32xx_rtc_device = {
134 .name = "rtc-lpc32xx",
135 .id = -1,
136 .num_resources = ARRAY_SIZE(lpc32xx_rtc_resources),
137 .resource = lpc32xx_rtc_resources,
138};
139
Kevin Wellsfc982e12010-07-27 08:42:46 -0700140/*
Roland Stigge678a0222012-02-17 14:58:14 +0100141 * ADC support
142 */
143static struct resource adc_resources[] = {
144 {
145 .start = LPC32XX_ADC_BASE,
146 .end = LPC32XX_ADC_BASE + SZ_4K - 1,
147 .flags = IORESOURCE_MEM,
148 }, {
149 .start = IRQ_LPC32XX_TS_IRQ,
150 .end = IRQ_LPC32XX_TS_IRQ,
151 .flags = IORESOURCE_IRQ,
152 },
153};
154
155struct platform_device lpc32xx_adc_device = {
156 .name = "lpc32xx-adc",
157 .id = -1,
158 .num_resources = ARRAY_SIZE(adc_resources),
159 .resource = adc_resources,
160};
161
162/*
Roland Stigge48a5ded2012-03-12 22:23:43 +0100163 * USB support
164 */
165/* The dmamask must be set for OHCI to work */
166static u64 ohci_dmamask = ~(u32) 0;
167static struct resource ohci_resources[] = {
168 {
169 .start = IO_ADDRESS(LPC32XX_USB_BASE),
170 .end = IO_ADDRESS(LPC32XX_USB_BASE + 0x100 - 1),
171 .flags = IORESOURCE_MEM,
172 }, {
173 .start = IRQ_LPC32XX_USB_HOST,
174 .flags = IORESOURCE_IRQ,
175 },
176};
177struct platform_device lpc32xx_ohci_device = {
178 .name = "usb-ohci",
179 .id = -1,
180 .dev = {
181 .dma_mask = &ohci_dmamask,
182 .coherent_dma_mask = 0xFFFFFFFF,
183 },
184 .num_resources = ARRAY_SIZE(ohci_resources),
185 .resource = ohci_resources,
186};
187
188/*
Kevin Wellsfc982e12010-07-27 08:42:46 -0700189 * Returns the unique ID for the device
190 */
191void lpc32xx_get_uid(u32 devid[4])
192{
193 int i;
194
195 for (i = 0; i < 4; i++)
196 devid[i] = __raw_readl(LPC32XX_CLKPWR_DEVID(i << 2));
197}
198
199/*
200 * Returns SYSCLK source
201 * 0 = PLL397, 1 = main oscillator
202 */
203int clk_is_sysclk_mainosc(void)
204{
205 if ((__raw_readl(LPC32XX_CLKPWR_SYSCLK_CTRL) &
206 LPC32XX_CLKPWR_SYSCTRL_SYSCLKMUX) == 0)
207 return 1;
208
209 return 0;
210}
211
212/*
213 * System reset via the watchdog timer
214 */
Russell Kingb23fcd92011-11-05 12:17:40 +0000215static void lpc32xx_watchdog_reset(void)
Kevin Wellsfc982e12010-07-27 08:42:46 -0700216{
217 /* Make sure WDT clocks are enabled */
218 __raw_writel(LPC32XX_CLKPWR_PWMCLK_WDOG_EN,
219 LPC32XX_CLKPWR_TIMER_CLK_CTRL);
220
221 /* Instant assert of RESETOUT_N with pulse length 1mS */
222 __raw_writel(13000, io_p2v(LPC32XX_WDTIM_BASE + 0x18));
223 __raw_writel(0x70, io_p2v(LPC32XX_WDTIM_BASE + 0xC));
224}
225
226/*
227 * Detects and returns IRAM size for the device variation
228 */
229#define LPC32XX_IRAM_BANK_SIZE SZ_128K
230static u32 iram_size;
231u32 lpc32xx_return_iram_size(void)
232{
233 if (iram_size == 0) {
234 u32 savedval1, savedval2;
235 void __iomem *iramptr1, *iramptr2;
236
237 iramptr1 = io_p2v(LPC32XX_IRAM_BASE);
238 iramptr2 = io_p2v(LPC32XX_IRAM_BASE + LPC32XX_IRAM_BANK_SIZE);
239 savedval1 = __raw_readl(iramptr1);
240 savedval2 = __raw_readl(iramptr2);
241
242 if (savedval1 == savedval2) {
243 __raw_writel(savedval2 + 1, iramptr2);
244 if (__raw_readl(iramptr1) == savedval2 + 1)
245 iram_size = LPC32XX_IRAM_BANK_SIZE;
246 else
247 iram_size = LPC32XX_IRAM_BANK_SIZE * 2;
248 __raw_writel(savedval2, iramptr2);
249 } else
250 iram_size = LPC32XX_IRAM_BANK_SIZE * 2;
251 }
252
253 return iram_size;
254}
255
256/*
257 * Computes PLL rate from PLL register and input clock
258 */
259u32 clk_check_pll_setup(u32 ifreq, struct clk_pll_setup *pllsetup)
260{
261 u32 ilfreq, p, m, n, fcco, fref, cfreq;
262 int mode;
263
264 /*
265 * PLL requirements
266 * ifreq must be >= 1MHz and <= 20MHz
267 * FCCO must be >= 156MHz and <= 320MHz
268 * FREF must be >= 1MHz and <= 27MHz
269 * Assume the passed input data is not valid
270 */
271
272 ilfreq = ifreq;
273 m = pllsetup->pll_m;
274 n = pllsetup->pll_n;
275 p = pllsetup->pll_p;
276
277 mode = (pllsetup->cco_bypass_b15 << 2) |
278 (pllsetup->direct_output_b14 << 1) |
279 pllsetup->fdbk_div_ctrl_b13;
280
281 switch (mode) {
282 case 0x0: /* Non-integer mode */
283 cfreq = (m * ilfreq) / (2 * p * n);
284 fcco = (m * ilfreq) / n;
285 fref = ilfreq / n;
286 break;
287
288 case 0x1: /* integer mode */
289 cfreq = (m * ilfreq) / n;
290 fcco = (m * ilfreq) / (n * 2 * p);
291 fref = ilfreq / n;
292 break;
293
294 case 0x2:
295 case 0x3: /* Direct mode */
296 cfreq = (m * ilfreq) / n;
297 fcco = cfreq;
298 fref = ilfreq / n;
299 break;
300
301 case 0x4:
302 case 0x5: /* Bypass mode */
303 cfreq = ilfreq / (2 * p);
304 fcco = 156000000;
305 fref = 1000000;
306 break;
307
308 case 0x6:
309 case 0x7: /* Direct bypass mode */
310 default:
311 cfreq = ilfreq;
312 fcco = 156000000;
313 fref = 1000000;
314 break;
315 }
316
317 if (fcco < 156000000 || fcco > 320000000)
318 cfreq = 0;
319
320 if (fref < 1000000 || fref > 27000000)
321 cfreq = 0;
322
323 return (u32) cfreq;
324}
325
326u32 clk_get_pclk_div(void)
327{
328 return 1 + ((__raw_readl(LPC32XX_CLKPWR_HCLK_DIV) >> 2) & 0x1F);
329}
330
331static struct map_desc lpc32xx_io_desc[] __initdata = {
332 {
333 .virtual = IO_ADDRESS(LPC32XX_AHB0_START),
334 .pfn = __phys_to_pfn(LPC32XX_AHB0_START),
335 .length = LPC32XX_AHB0_SIZE,
336 .type = MT_DEVICE
337 },
338 {
339 .virtual = IO_ADDRESS(LPC32XX_AHB1_START),
340 .pfn = __phys_to_pfn(LPC32XX_AHB1_START),
341 .length = LPC32XX_AHB1_SIZE,
342 .type = MT_DEVICE
343 },
344 {
345 .virtual = IO_ADDRESS(LPC32XX_FABAPB_START),
346 .pfn = __phys_to_pfn(LPC32XX_FABAPB_START),
347 .length = LPC32XX_FABAPB_SIZE,
348 .type = MT_DEVICE
349 },
350 {
351 .virtual = IO_ADDRESS(LPC32XX_IRAM_BASE),
352 .pfn = __phys_to_pfn(LPC32XX_IRAM_BASE),
353 .length = (LPC32XX_IRAM_BANK_SIZE * 2),
354 .type = MT_DEVICE
355 },
356};
357
358void __init lpc32xx_map_io(void)
359{
360 iotable_init(lpc32xx_io_desc, ARRAY_SIZE(lpc32xx_io_desc));
361}
Russell Kingb23fcd92011-11-05 12:17:40 +0000362
363void lpc23xx_restart(char mode, const char *cmd)
364{
365 switch (mode) {
366 case 's':
367 case 'h':
Russell Kingb23fcd92011-11-05 12:17:40 +0000368 lpc32xx_watchdog_reset();
369 break;
370
371 default:
372 /* Do nothing */
373 break;
374 }
375
376 /* Wait for watchdog to reset system */
377 while (1)
378 ;
379}