blob: 5966f353890f4b2576b4ab118e9d71b4b81b5d48 [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 = {
Rabin Vincent94bdc0e2010-03-03 04:54:37 +010028 &u8500_gpio_devs[0],
29 &u8500_gpio_devs[1],
30 &u8500_gpio_devs[2],
31 &u8500_gpio_devs[3],
32 &u8500_gpio_devs[4],
33 &u8500_gpio_devs[5],
34 &u8500_gpio_devs[6],
35 &u8500_gpio_devs[7],
36 &u8500_gpio_devs[8],
Linus Walleij7b8ddb02010-05-27 15:21:26 -070037 &u8500_dma40_device,
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010038};
39
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010040/* minimum static i/o mapping required to boot U8500 platforms */
41static struct map_desc u8500_io_desc[] __initdata = {
Rabin Vincent1df20af2010-03-01 05:07:47 +010042 __IO_DEV_DESC(U8500_PRCMU_BASE, SZ_4K),
Linus Walleijf9467382010-08-19 10:27:49 +010043 __IO_DEV_DESC(U8500_PRCMU_TCDM_BASE, SZ_4K),
Rabin Vincentc9c09572010-05-03 07:34:53 +010044 __IO_DEV_DESC(U8500_GPIO0_BASE, SZ_4K),
Rabin Vincent94bdc0e2010-03-03 04:54:37 +010045 __IO_DEV_DESC(U8500_GPIO1_BASE, SZ_4K),
46 __IO_DEV_DESC(U8500_GPIO2_BASE, SZ_4K),
47 __IO_DEV_DESC(U8500_GPIO3_BASE, SZ_4K),
Linus Walleijf9467382010-08-19 10:27:49 +010048 __MEM_DEV_DESC(U8500_BOOT_ROM_BASE, SZ_1M),
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010049};
50
Rabin Vincent75a36ee2010-03-01 05:05:56 +010051static struct map_desc u8500ed_io_desc[] __initdata = {
52 __IO_DEV_DESC(U8500_MTU0_BASE_ED, SZ_4K),
Rabin Vincent1df20af2010-03-01 05:07:47 +010053 __IO_DEV_DESC(U8500_CLKRST7_BASE_ED, SZ_8K),
Rabin Vincent75a36ee2010-03-01 05:05:56 +010054};
55
56static struct map_desc u8500v1_io_desc[] __initdata = {
Rabin Vincentc9c09572010-05-03 07:34:53 +010057 __IO_DEV_DESC(U8500_MTU0_BASE, SZ_4K),
Rabin Vincent75a36ee2010-03-01 05:05:56 +010058};
59
Linus Walleijf9467382010-08-19 10:27:49 +010060/*
61 * Functions to differentiate between later ASICs
62 * We look into the end of the ROM to locate the hardcoded ASIC ID.
63 * This is only needed to differentiate between minor revisions and
64 * process variants of an ASIC, the major revisions are encoded in
65 * the cpuid.
66 */
67#define U8500_ASIC_ID_LOC_ED_V1 (U8500_BOOT_ROM_BASE + 0x1FFF4)
68#define U8500_ASIC_ID_LOC_V2 (U8500_BOOT_ROM_BASE + 0x1DBF4)
69#define U8500_ASIC_REV_ED 0x01
70#define U8500_ASIC_REV_V10 0xA0
71#define U8500_ASIC_REV_V11 0xA1
72#define U8500_ASIC_REV_V20 0xB0
73
74/**
75 * struct db8500_asic_id - fields of the ASIC ID
76 * @process: the manufacturing process, 0x40 is 40 nm
77 * 0x00 is "standard"
78 * @partnumber: hithereto 0x8500 for DB8500
79 * @revision: version code in the series
80 * This field definion is not formally defined but makes
81 * sense.
82 */
83struct db8500_asic_id {
84 u8 process;
85 u16 partnumber;
86 u8 revision;
87};
88
89/* This isn't going to change at runtime */
90static struct db8500_asic_id db8500_id;
91
92static void __init get_db8500_asic_id(void)
93{
94 u32 asicid;
95
96 if (cpu_is_u8500v1() || cpu_is_u8500ed())
97 asicid = readl(__io_address(U8500_ASIC_ID_LOC_ED_V1));
98 else if (cpu_is_u8500v2())
99 asicid = readl(__io_address(U8500_ASIC_ID_LOC_V2));
100 else
101 BUG();
102
103 db8500_id.process = (asicid >> 24);
104 db8500_id.partnumber = (asicid >> 16) & 0xFFFFU;
105 db8500_id.revision = asicid & 0xFFU;
106}
107
108bool cpu_is_u8500v10(void)
109{
110 return (db8500_id.revision == U8500_ASIC_REV_V10);
111}
112
113bool cpu_is_u8500v11(void)
114{
115 return (db8500_id.revision == U8500_ASIC_REV_V11);
116}
117
118bool cpu_is_u8500v20(void)
119{
120 return (db8500_id.revision == U8500_ASIC_REV_V20);
121}
122
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100123void __init u8500_map_io(void)
124{
Rabin Vincent178980f2010-05-03 07:39:02 +0100125 ux500_map_io();
126
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100127 iotable_init(u8500_io_desc, ARRAY_SIZE(u8500_io_desc));
Rabin Vincent75a36ee2010-03-01 05:05:56 +0100128
129 if (cpu_is_u8500ed())
130 iotable_init(u8500ed_io_desc, ARRAY_SIZE(u8500ed_io_desc));
131 else
132 iotable_init(u8500v1_io_desc, ARRAY_SIZE(u8500v1_io_desc));
Linus Walleijf9467382010-08-19 10:27:49 +0100133
134 /* Read out the ASIC ID as early as we can */
135 get_db8500_asic_id();
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100136}
137
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100138/*
139 * This function is called from the board init
140 */
141void __init u8500_init_devices(void)
142{
Linus Walleijf9467382010-08-19 10:27:49 +0100143 /* Display some ASIC boilerplate */
144 pr_info("DB8500: process: %02x, revision ID: 0x%02x\n",
145 db8500_id.process, db8500_id.revision);
146 if (cpu_is_u8500ed())
147 pr_info("DB8500: Early Drop (ED)\n");
148 else if (cpu_is_u8500v10())
149 pr_info("DB8500: version 1.0\n");
150 else if (cpu_is_u8500v11())
151 pr_info("DB8500: version 1.1\n");
152 else if (cpu_is_u8500v20())
153 pr_info("DB8500: version 2.0\n");
154 else
155 pr_warning("ASIC: UNKNOWN SILICON VERSION!\n");
156
Linus Walleij7b8ddb02010-05-27 15:21:26 -0700157 if (cpu_is_u8500ed())
158 dma40_u8500ed_fixup();
159
Rabin Vincentfbf1ead2010-09-29 19:46:32 +0530160 db8500_add_rtc();
161
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100162 platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs));
163
164 return ;
165}