Kevin Hilman | a9434e9 | 2013-12-17 16:23:49 -0800 | [diff] [blame] | 1 | /* |
Haojian Zhuang | 389ee0c | 2013-12-20 10:52:56 +0800 | [diff] [blame] | 2 | * (Hisilicon's SoC based) flattened device tree enabled machine |
Haojian Zhuang | 2c7268c | 2013-12-11 15:54:50 +0800 | [diff] [blame] | 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> |
Kevin Hilman | a9434e9 | 2013-12-17 16:23:49 -0800 | [diff] [blame] | 17 | |
Haojian Zhuang | 2c7268c | 2013-12-11 15:54:50 +0800 | [diff] [blame] | 18 | #include <asm/mach/arch.h> |
| 19 | #include <asm/mach/map.h> |
| 20 | |
Kevin Hilman | a9434e9 | 2013-12-17 16:23:49 -0800 | [diff] [blame] | 21 | #define HI3620_SYSCTRL_PHYS_BASE 0xfc802000 |
| 22 | #define HI3620_SYSCTRL_VIRT_BASE 0xfe802000 |
| 23 | |
Haojian Zhuang | 2c7268c | 2013-12-11 15:54:50 +0800 | [diff] [blame] | 24 | /* |
| 25 | * This table is only for optimization. Since ioremap() could always share |
| 26 | * the same mapping if it's defined as static IO mapping. |
| 27 | * |
| 28 | * Without this table, system could also work. The cost is some virtual address |
| 29 | * spaces wasted since ioremap() may be called multi times for the same |
| 30 | * IO space. |
| 31 | */ |
| 32 | static struct map_desc hi3620_io_desc[] __initdata = { |
| 33 | { |
Kevin Hilman | a9434e9 | 2013-12-17 16:23:49 -0800 | [diff] [blame] | 34 | /* sysctrl */ |
| 35 | .pfn = __phys_to_pfn(HI3620_SYSCTRL_PHYS_BASE), |
| 36 | .virtual = HI3620_SYSCTRL_VIRT_BASE, |
Haojian Zhuang | 2c7268c | 2013-12-11 15:54:50 +0800 | [diff] [blame] | 37 | .length = 0x1000, |
| 38 | .type = MT_DEVICE, |
| 39 | }, |
| 40 | }; |
| 41 | |
| 42 | static void __init hi3620_map_io(void) |
| 43 | { |
| 44 | debug_ll_io_init(); |
| 45 | iotable_init(hi3620_io_desc, ARRAY_SIZE(hi3620_io_desc)); |
| 46 | } |
| 47 | |
Uwe Kleine-König | 543c504 | 2015-02-18 21:01:45 +0100 | [diff] [blame] | 48 | static const char *const hi3xxx_compat[] __initconst = { |
Haojian Zhuang | 2c7268c | 2013-12-11 15:54:50 +0800 | [diff] [blame] | 49 | "hisilicon,hi3620-hi4511", |
| 50 | NULL, |
| 51 | }; |
| 52 | |
| 53 | DT_MACHINE_START(HI3620, "Hisilicon Hi3620 (Flattened Device Tree)") |
| 54 | .map_io = hi3620_map_io, |
Haojian Zhuang | 2c7268c | 2013-12-11 15:54:50 +0800 | [diff] [blame] | 55 | .dt_compat = hi3xxx_compat, |
Haojian Zhuang | 2c7268c | 2013-12-11 15:54:50 +0800 | [diff] [blame] | 56 | MACHINE_END |
Haifeng Yan | 06cc5c1 | 2014-04-11 11:54:11 +0800 | [diff] [blame] | 57 | |
Uwe Kleine-König | 543c504 | 2015-02-18 21:01:45 +0100 | [diff] [blame] | 58 | static const char *const hix5hd2_compat[] __initconst = { |
Haifeng Yan | 06cc5c1 | 2014-04-11 11:54:11 +0800 | [diff] [blame] | 59 | "hisilicon,hix5hd2", |
| 60 | NULL, |
| 61 | }; |
| 62 | |
| 63 | DT_MACHINE_START(HIX5HD2_DT, "Hisilicon HIX5HD2 (Flattened Device Tree)") |
| 64 | .dt_compat = hix5hd2_compat, |
Haifeng Yan | 06cc5c1 | 2014-04-11 11:54:11 +0800 | [diff] [blame] | 65 | MACHINE_END |
Haojian Zhuang | 2d518ed | 2014-05-09 16:58:04 +0800 | [diff] [blame] | 66 | |
Uwe Kleine-König | 543c504 | 2015-02-18 21:01:45 +0100 | [diff] [blame] | 67 | static const char *const hip04_compat[] __initconst = { |
Haojian Zhuang | 2d518ed | 2014-05-09 16:58:04 +0800 | [diff] [blame] | 68 | "hisilicon,hip04-d01", |
| 69 | NULL, |
| 70 | }; |
| 71 | |
| 72 | DT_MACHINE_START(HIP04, "Hisilicon HiP04 (Flattened Device Tree)") |
| 73 | .dt_compat = hip04_compat, |
| 74 | MACHINE_END |
Wang Long | 82fd132 | 2014-12-24 03:09:57 +0000 | [diff] [blame] | 75 | |
Uwe Kleine-König | 543c504 | 2015-02-18 21:01:45 +0100 | [diff] [blame] | 76 | static const char *const hip01_compat[] __initconst = { |
Wang Long | 82fd132 | 2014-12-24 03:09:57 +0000 | [diff] [blame] | 77 | "hisilicon,hip01", |
| 78 | "hisilicon,hip01-ca9x2", |
| 79 | NULL, |
| 80 | }; |
| 81 | |
| 82 | DT_MACHINE_START(HIP01, "Hisilicon HIP01 (Flattened Device Tree)") |
| 83 | .dt_compat = hip01_compat, |
| 84 | MACHINE_END |