blob: c0f34a404c532c03a3a11d263afd26a1a5c2910b [file] [log] [blame]
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +01001/*
2 * Copyright (C) 2008-2009 ST-Ericsson
3 *
4 * Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.
9 *
10 */
11#include <linux/types.h>
12#include <linux/init.h>
13#include <linux/device.h>
14#include <linux/amba/bus.h>
15#include <linux/irq.h>
Rabin Vincent94bdc0e2010-03-03 04:54:37 +010016#include <linux/gpio.h>
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010017#include <linux/platform_device.h>
Rabin Vincentcc2c1332010-03-01 05:03:31 +010018#include <linux/io.h>
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010019
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010020#include <asm/mach/map.h>
21#include <mach/hardware.h>
Rabin Vincentcc2c1332010-03-01 05:03:31 +010022#include <mach/setup.h>
Rabin Vincent5b1f7dd2010-05-03 08:25:52 +010023#include <mach/devices.h>
Rabin Vincent94bdc0e2010-03-03 04:54:37 +010024
Rabin Vincentfbf1ead2010-09-29 19:46:32 +053025#include "devices-db8500.h"
26
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010027static struct platform_device *platform_devs[] __initdata = {
Linus Walleij7b8ddb02010-05-27 15:21:26 -070028 &u8500_dma40_device,
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010029};
30
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010031/* minimum static i/o mapping required to boot U8500 platforms */
32static struct map_desc u8500_io_desc[] __initdata = {
Rabin Vincent1df20af2010-03-01 05:07:47 +010033 __IO_DEV_DESC(U8500_PRCMU_BASE, SZ_4K),
Rabin Vincentc9c09572010-05-03 07:34:53 +010034 __IO_DEV_DESC(U8500_GPIO0_BASE, SZ_4K),
Rabin Vincent94bdc0e2010-03-03 04:54:37 +010035 __IO_DEV_DESC(U8500_GPIO1_BASE, SZ_4K),
36 __IO_DEV_DESC(U8500_GPIO2_BASE, SZ_4K),
37 __IO_DEV_DESC(U8500_GPIO3_BASE, SZ_4K),
Linus Walleijf9467382010-08-19 10:27:49 +010038 __MEM_DEV_DESC(U8500_BOOT_ROM_BASE, SZ_1M),
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010039};
40
Mattias Wallinfcbd4582010-12-02 16:20:42 +010041static struct map_desc u8500_ed_io_desc[] __initdata = {
Rabin Vincent75a36ee2010-03-01 05:05:56 +010042 __IO_DEV_DESC(U8500_MTU0_BASE_ED, SZ_4K),
Rabin Vincent1df20af2010-03-01 05:07:47 +010043 __IO_DEV_DESC(U8500_CLKRST7_BASE_ED, SZ_8K),
Rabin Vincent75a36ee2010-03-01 05:05:56 +010044};
45
Mattias Wallinfcbd4582010-12-02 16:20:42 +010046static struct map_desc u8500_v1_io_desc[] __initdata = {
Rabin Vincentc9c09572010-05-03 07:34:53 +010047 __IO_DEV_DESC(U8500_MTU0_BASE, SZ_4K),
Mattias Wallinfcbd4582010-12-02 16:20:42 +010048 __IO_DEV_DESC(U8500_PRCMU_TCDM_BASE_V1, SZ_4K),
49};
50
51static struct map_desc u8500_v2_io_desc[] __initdata = {
52 __IO_DEV_DESC(U8500_PRCMU_TCDM_BASE, SZ_4K),
Rabin Vincent75a36ee2010-03-01 05:05:56 +010053};
54
Linus Walleijf9467382010-08-19 10:27:49 +010055/*
56 * Functions to differentiate between later ASICs
57 * We look into the end of the ROM to locate the hardcoded ASIC ID.
58 * This is only needed to differentiate between minor revisions and
59 * process variants of an ASIC, the major revisions are encoded in
60 * the cpuid.
61 */
62#define U8500_ASIC_ID_LOC_ED_V1 (U8500_BOOT_ROM_BASE + 0x1FFF4)
63#define U8500_ASIC_ID_LOC_V2 (U8500_BOOT_ROM_BASE + 0x1DBF4)
64#define U8500_ASIC_REV_ED 0x01
65#define U8500_ASIC_REV_V10 0xA0
66#define U8500_ASIC_REV_V11 0xA1
67#define U8500_ASIC_REV_V20 0xB0
68
69/**
70 * struct db8500_asic_id - fields of the ASIC ID
71 * @process: the manufacturing process, 0x40 is 40 nm
72 * 0x00 is "standard"
73 * @partnumber: hithereto 0x8500 for DB8500
74 * @revision: version code in the series
75 * This field definion is not formally defined but makes
76 * sense.
77 */
78struct db8500_asic_id {
79 u8 process;
80 u16 partnumber;
81 u8 revision;
82};
83
84/* This isn't going to change at runtime */
85static struct db8500_asic_id db8500_id;
86
87static void __init get_db8500_asic_id(void)
88{
89 u32 asicid;
90
91 if (cpu_is_u8500v1() || cpu_is_u8500ed())
92 asicid = readl(__io_address(U8500_ASIC_ID_LOC_ED_V1));
93 else if (cpu_is_u8500v2())
94 asicid = readl(__io_address(U8500_ASIC_ID_LOC_V2));
95 else
96 BUG();
97
98 db8500_id.process = (asicid >> 24);
99 db8500_id.partnumber = (asicid >> 16) & 0xFFFFU;
100 db8500_id.revision = asicid & 0xFFU;
101}
102
103bool cpu_is_u8500v10(void)
104{
105 return (db8500_id.revision == U8500_ASIC_REV_V10);
106}
107
108bool cpu_is_u8500v11(void)
109{
110 return (db8500_id.revision == U8500_ASIC_REV_V11);
111}
112
113bool cpu_is_u8500v20(void)
114{
115 return (db8500_id.revision == U8500_ASIC_REV_V20);
116}
117
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100118void __init u8500_map_io(void)
119{
Rabin Vincent178980f2010-05-03 07:39:02 +0100120 ux500_map_io();
121
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100122 iotable_init(u8500_io_desc, ARRAY_SIZE(u8500_io_desc));
Rabin Vincent75a36ee2010-03-01 05:05:56 +0100123
124 if (cpu_is_u8500ed())
Mattias Wallinfcbd4582010-12-02 16:20:42 +0100125 iotable_init(u8500_ed_io_desc, ARRAY_SIZE(u8500_ed_io_desc));
126 else if (cpu_is_u8500v1())
127 iotable_init(u8500_v1_io_desc, ARRAY_SIZE(u8500_v1_io_desc));
128 else if (cpu_is_u8500v2())
129 iotable_init(u8500_v2_io_desc, ARRAY_SIZE(u8500_v2_io_desc));
Linus Walleijf9467382010-08-19 10:27:49 +0100130
131 /* Read out the ASIC ID as early as we can */
132 get_db8500_asic_id();
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100133}
134
Rabin Vincent01afdd12010-12-08 11:07:55 +0530135static resource_size_t __initdata db8500_gpio_base[] = {
136 U8500_GPIOBANK0_BASE,
137 U8500_GPIOBANK1_BASE,
138 U8500_GPIOBANK2_BASE,
139 U8500_GPIOBANK3_BASE,
140 U8500_GPIOBANK4_BASE,
141 U8500_GPIOBANK5_BASE,
142 U8500_GPIOBANK6_BASE,
143 U8500_GPIOBANK7_BASE,
144 U8500_GPIOBANK8_BASE,
145};
146
147static void __init db8500_add_gpios(void)
148{
149 struct nmk_gpio_platform_data pdata = {
150 /* No custom data yet */
151 };
152
153 dbx500_add_gpios(ARRAY_AND_SIZE(db8500_gpio_base),
154 IRQ_DB8500_GPIO0, &pdata);
155}
156
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100157/*
158 * This function is called from the board init
159 */
160void __init u8500_init_devices(void)
161{
Linus Walleijf9467382010-08-19 10:27:49 +0100162 /* Display some ASIC boilerplate */
163 pr_info("DB8500: process: %02x, revision ID: 0x%02x\n",
164 db8500_id.process, db8500_id.revision);
165 if (cpu_is_u8500ed())
166 pr_info("DB8500: Early Drop (ED)\n");
167 else if (cpu_is_u8500v10())
168 pr_info("DB8500: version 1.0\n");
169 else if (cpu_is_u8500v11())
170 pr_info("DB8500: version 1.1\n");
171 else if (cpu_is_u8500v20())
172 pr_info("DB8500: version 2.0\n");
173 else
174 pr_warning("ASIC: UNKNOWN SILICON VERSION!\n");
175
Linus Walleij7b8ddb02010-05-27 15:21:26 -0700176 if (cpu_is_u8500ed())
177 dma40_u8500ed_fixup();
178
Rabin Vincentfbf1ead2010-09-29 19:46:32 +0530179 db8500_add_rtc();
Rabin Vincent01afdd12010-12-08 11:07:55 +0530180 db8500_add_gpios();
Rabin Vincentfbf1ead2010-09-29 19:46:32 +0530181
Martin Persson7c1a70e2010-12-08 15:13:42 +0100182 platform_device_register_simple("cpufreq-u8500", -1, NULL, 0);
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100183 platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs));
184
185 return ;
186}