blob: 2f6067bce7c3b3d7cd62a6f2d5f415903ed33885 [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>
Kevin Wellsfc982e12010-07-27 08:42:46 -070020
21#include <asm/mach/map.h>
Alexandre Pereira da Silvae39942f2012-07-20 14:01:51 +020022#include <asm/system_info.h>
Kevin Wellsfc982e12010-07-27 08:42:46 -070023
Kevin Wellsfc982e12010-07-27 08:42:46 -070024#include <mach/hardware.h>
25#include <mach/platform.h>
26#include "common.h"
27
28/*
Kevin Wellsfc982e12010-07-27 08:42:46 -070029 * Returns the unique ID for the device
30 */
31void lpc32xx_get_uid(u32 devid[4])
32{
33 int i;
34
35 for (i = 0; i < 4; i++)
36 devid[i] = __raw_readl(LPC32XX_CLKPWR_DEVID(i << 2));
37}
38
39/*
Kevin Wellsfc982e12010-07-27 08:42:46 -070040 * Detects and returns IRAM size for the device variation
41 */
42#define LPC32XX_IRAM_BANK_SIZE SZ_128K
43static u32 iram_size;
44u32 lpc32xx_return_iram_size(void)
45{
46 if (iram_size == 0) {
47 u32 savedval1, savedval2;
48 void __iomem *iramptr1, *iramptr2;
49
50 iramptr1 = io_p2v(LPC32XX_IRAM_BASE);
51 iramptr2 = io_p2v(LPC32XX_IRAM_BASE + LPC32XX_IRAM_BANK_SIZE);
52 savedval1 = __raw_readl(iramptr1);
53 savedval2 = __raw_readl(iramptr2);
54
55 if (savedval1 == savedval2) {
56 __raw_writel(savedval2 + 1, iramptr2);
57 if (__raw_readl(iramptr1) == savedval2 + 1)
58 iram_size = LPC32XX_IRAM_BANK_SIZE;
59 else
60 iram_size = LPC32XX_IRAM_BANK_SIZE * 2;
61 __raw_writel(savedval2, iramptr2);
62 } else
63 iram_size = LPC32XX_IRAM_BANK_SIZE * 2;
64 }
65
66 return iram_size;
67}
Arnd Bergmann22833d52014-02-17 20:21:55 +010068EXPORT_SYMBOL_GPL(lpc32xx_return_iram_size);
Kevin Wellsfc982e12010-07-27 08:42:46 -070069
Kevin Wellsfc982e12010-07-27 08:42:46 -070070static struct map_desc lpc32xx_io_desc[] __initdata = {
71 {
Arnd Bergmanndf38b242012-09-14 20:20:24 +000072 .virtual = (unsigned long)IO_ADDRESS(LPC32XX_AHB0_START),
Kevin Wellsfc982e12010-07-27 08:42:46 -070073 .pfn = __phys_to_pfn(LPC32XX_AHB0_START),
74 .length = LPC32XX_AHB0_SIZE,
75 .type = MT_DEVICE
76 },
77 {
Arnd Bergmanndf38b242012-09-14 20:20:24 +000078 .virtual = (unsigned long)IO_ADDRESS(LPC32XX_AHB1_START),
Kevin Wellsfc982e12010-07-27 08:42:46 -070079 .pfn = __phys_to_pfn(LPC32XX_AHB1_START),
80 .length = LPC32XX_AHB1_SIZE,
81 .type = MT_DEVICE
82 },
83 {
Arnd Bergmanndf38b242012-09-14 20:20:24 +000084 .virtual = (unsigned long)IO_ADDRESS(LPC32XX_FABAPB_START),
Kevin Wellsfc982e12010-07-27 08:42:46 -070085 .pfn = __phys_to_pfn(LPC32XX_FABAPB_START),
86 .length = LPC32XX_FABAPB_SIZE,
87 .type = MT_DEVICE
88 },
89 {
Arnd Bergmanndf38b242012-09-14 20:20:24 +000090 .virtual = (unsigned long)IO_ADDRESS(LPC32XX_IRAM_BASE),
Kevin Wellsfc982e12010-07-27 08:42:46 -070091 .pfn = __phys_to_pfn(LPC32XX_IRAM_BASE),
92 .length = (LPC32XX_IRAM_BANK_SIZE * 2),
93 .type = MT_DEVICE
94 },
95};
96
97void __init lpc32xx_map_io(void)
98{
99 iotable_init(lpc32xx_io_desc, ARRAY_SIZE(lpc32xx_io_desc));
100}
Russell Kingb23fcd92011-11-05 12:17:40 +0000101
Alexandre Pereira da Silvae39942f2012-07-20 14:01:51 +0200102static int __init lpc32xx_check_uid(void)
Roland Stiggebe20dbc2012-04-22 12:01:19 +0200103{
104 u32 uid[4];
105
106 lpc32xx_get_uid(uid);
107
108 printk(KERN_INFO "LPC32XX unique ID: %08x%08x%08x%08x\n",
109 uid[3], uid[2], uid[1], uid[0]);
110
Alexandre Pereira da Silvae39942f2012-07-20 14:01:51 +0200111 if (!system_serial_low && !system_serial_high) {
112 system_serial_low = uid[0];
113 system_serial_high = uid[1];
114 }
115
Roland Stiggebe20dbc2012-04-22 12:01:19 +0200116 return 1;
117}
Alexandre Pereira da Silvae39942f2012-07-20 14:01:51 +0200118arch_initcall(lpc32xx_check_uid);