1 /* 2 * (Hisilicon's SoC based) flattened device tree enabled machine 3 * 4 * Copyright (c) 2012-2013 Hisilicon Ltd. 5 * Copyright (c) 2012-2013 Linaro Ltd. 6 * 7 * Author: Haojian Zhuang <haojian.zhuang@linaro.org> 8 * 9 * This program is free software; you can redistribute it and/or modify 10 * it under the terms of the GNU General Public License version 2 as 11 * published by the Free Software Foundation. 12 */ 13 14 #include <linux/clk-provider.h> 15 #include <linux/clocksource.h> 16 #include <linux/irqchip.h> 17 18 #include <asm/mach/arch.h> 19 #include <asm/mach/map.h> 20 21 #include "core.h" 22 23 #define HI3620_SYSCTRL_PHYS_BASE 0xfc802000 24 #define HI3620_SYSCTRL_VIRT_BASE 0xfe802000 25 26 /* 27 * This table is only for optimization. Since ioremap() could always share 28 * the same mapping if it's defined as static IO mapping. 29 * 30 * Without this table, system could also work. The cost is some virtual address 31 * spaces wasted since ioremap() may be called multi times for the same 32 * IO space. 33 */ 34 static struct map_desc hi3620_io_desc[] __initdata = { 35 { 36 /* sysctrl */ 37 .pfn = __phys_to_pfn(HI3620_SYSCTRL_PHYS_BASE), 38 .virtual = HI3620_SYSCTRL_VIRT_BASE, 39 .length = 0x1000, 40 .type = MT_DEVICE, 41 }, 42 }; 43 44 static void __init hi3620_map_io(void) 45 { 46 debug_ll_io_init(); 47 iotable_init(hi3620_io_desc, ARRAY_SIZE(hi3620_io_desc)); 48 } 49 50 static const char *hi3xxx_compat[] __initconst = { 51 "hisilicon,hi3620-hi4511", 52 NULL, 53 }; 54 55 DT_MACHINE_START(HI3620, "Hisilicon Hi3620 (Flattened Device Tree)") 56 .map_io = hi3620_map_io, 57 .dt_compat = hi3xxx_compat, 58 .smp = smp_ops(hi3xxx_smp_ops), 59 MACHINE_END 60 61 static const char *hix5hd2_compat[] __initconst = { 62 "hisilicon,hix5hd2", 63 NULL, 64 }; 65 66 DT_MACHINE_START(HIX5HD2_DT, "Hisilicon HIX5HD2 (Flattened Device Tree)") 67 .dt_compat = hix5hd2_compat, 68 .smp = smp_ops(hix5hd2_smp_ops), 69 MACHINE_END 70