blob: abb61577e2dd97b7d9f70944bc14283a246190b6 [file] [log] [blame]
Daniel Walker614ad982010-02-24 15:44:51 -08001/* linux/arch/arm/mach-msm/board-sapphire.c
2 * Copyright (C) 2007-2009 HTC Corporation.
3 * Author: Thomas Tsai <thomas_tsai@htc.com>
4 *
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13*/
Russell King2f8163b2011-07-26 10:53:52 +010014#include <linux/gpio.h>
Daniel Walker614ad982010-02-24 15:44:51 -080015#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/platform_device.h>
18#include <linux/input.h>
19#include <linux/interrupt.h>
20#include <linux/irq.h>
Kay Sieversedbaa602011-12-21 16:26:03 -080021#include <linux/device.h>
Daniel Walker614ad982010-02-24 15:44:51 -080022
23#include <linux/delay.h>
24
Daniel Walker614ad982010-02-24 15:44:51 -080025#include <mach/hardware.h>
26#include <asm/mach-types.h>
27#include <asm/mach/arch.h>
28#include <asm/mach/map.h>
29#include <asm/mach/flash.h>
Daniel Walker614ad982010-02-24 15:44:51 -080030#include <mach/system.h>
31#include <mach/vreg.h>
32#include <mach/board.h>
Steve Mucklef132c6c2012-06-06 18:30:57 -070033#include <mach/proc_comm.h>
Daniel Walker614ad982010-02-24 15:44:51 -080034
35#include <asm/io.h>
36#include <asm/delay.h>
37#include <asm/setup.h>
38
39#include <linux/mtd/nand.h>
40#include <linux/mtd/partitions.h>
41
42#include "gpio_chip.h"
43#include "board-sapphire.h"
Daniel Walker614ad982010-02-24 15:44:51 -080044#include "devices.h"
45
46void msm_init_irq(void);
47void msm_init_gpio(void);
48
49static struct platform_device *devices[] __initdata = {
50 &msm_device_smd,
51 &msm_device_dmov,
52 &msm_device_nand,
53 &msm_device_uart1,
54 &msm_device_uart3,
55};
56
57extern struct sys_timer msm_timer;
58
59static void __init sapphire_init_irq(void)
60{
61 msm_init_irq();
62}
63
64static void __init sapphire_init(void)
65{
66 platform_add_devices(devices, ARRAY_SIZE(devices));
67}
68
69static struct map_desc sapphire_io_desc[] __initdata = {
70 {
71 .virtual = SAPPHIRE_CPLD_BASE,
72 .pfn = __phys_to_pfn(SAPPHIRE_CPLD_START),
73 .length = SAPPHIRE_CPLD_SIZE,
74 .type = MT_DEVICE_NONSHARED
75 }
76};
77
Russell King0744a3e2010-12-20 10:37:50 +000078static void __init sapphire_fixup(struct tag *tags, char **cmdline,
79 struct meminfo *mi)
Daniel Walker614ad982010-02-24 15:44:51 -080080{
81 int smi_sz = parse_tag_smi((const struct tag *)tags);
82
83 mi->nr_banks = 1;
84 mi->bank[0].start = PHYS_OFFSET;
85 mi->bank[0].node = PHYS_TO_NID(PHYS_OFFSET);
86 if (smi_sz == 32) {
87 mi->bank[0].size = (84*1024*1024);
88 } else if (smi_sz == 64) {
89 mi->bank[0].size = (101*1024*1024);
90 } else {
91 /* Give a default value when not get smi size */
92 smi_sz = 64;
93 mi->bank[0].size = (101*1024*1024);
94 }
95}
96
97static void __init sapphire_map_io(void)
98{
99 msm_map_common_io();
100 iotable_init(sapphire_io_desc, ARRAY_SIZE(sapphire_io_desc));
101 msm_clock_init();
102}
103
104MACHINE_START(SAPPHIRE, "sapphire")
105/* Maintainer: Brian Swetland <swetland@google.com> */
Nicolas Pitref631dd42011-07-05 22:38:14 -0400106 .atag_offset = 0x100,
Daniel Walker614ad982010-02-24 15:44:51 -0800107 .fixup = sapphire_fixup,
108 .map_io = sapphire_map_io,
109 .init_irq = sapphire_init_irq,
110 .init_machine = sapphire_init,
111 .timer = &msm_timer,
112MACHINE_END