rk30: io: add pwm register mapping
[firefly-linux-kernel-4.4.55.git] / arch / arm / mach-rk30 / io.c
1 /* arch/arm/mach-rk30/io.c
2  *
3  * Copyright (C) 2011 ROCKCHIP, Inc.
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  *
14  */
15  
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/io.h>
19
20 #include <asm/page.h>
21 #include <asm/mach/map.h>
22
23 #define RK30_DEVICE(name) { \
24                 .virtual = (unsigned long) RK30_##name##_BASE, \
25                 .pfn = __phys_to_pfn(RK30_##name##_PHYS), \
26                 .length = RK30_##name##_SIZE, \
27                 .type = MT_DEVICE, \
28          }
29
30 static struct map_desc rk30_io_desc[] __initdata = {
31         RK30_DEVICE(CORE),
32         RK30_DEVICE(UART0),
33         RK30_DEVICE(UART1),
34         RK30_DEVICE(GRF),
35         RK30_DEVICE(CRU),
36         RK30_DEVICE(PMU),
37         RK30_DEVICE(GPIO0),
38         RK30_DEVICE(GPIO1),
39         RK30_DEVICE(GPIO2),
40         RK30_DEVICE(GPIO3),
41         RK30_DEVICE(GPIO4),
42         RK30_DEVICE(GPIO6),
43         RK30_DEVICE(TIMER0),
44         RK30_DEVICE(TIMER1),
45         RK30_DEVICE(TIMER2),
46         RK30_DEVICE(PWM01),
47         RK30_DEVICE(PWM23),
48 };
49
50 void __init rk30_map_common_io(void)
51 {
52         iotable_init(rk30_io_desc, ARRAY_SIZE(rk30_io_desc));
53 }