rk3026: i2s add several attempts to double confirm i2s frac effect
[firefly-linux-kernel-4.4.55.git] / arch / arm / mach-rk319x / io.c
1 /*
2  *
3  * Copyright (C) 2013 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 #include <asm/page.h>
20 #include <asm/mach/map.h>
21 #include <mach/debug_uart.h>
22
23 #define RK319X_DEVICE(name) { \
24                 .virtual = (unsigned long) RK319X_##name##_BASE, \
25                 .pfn = __phys_to_pfn(RK319X_##name##_PHYS), \
26                 .length = RK319X_##name##_SIZE, \
27                 .type = MT_DEVICE, \
28         }
29
30 static struct map_desc rk319x_io_desc[] __initdata = {
31         RK319X_DEVICE(ROM),
32         RK319X_DEVICE(CORE),
33         RK319X_DEVICE(CPU_AXI_BUS),
34 #if CONFIG_RK_DEBUG_UART == 0
35         RK319X_DEVICE(UART0),
36 #elif CONFIG_RK_DEBUG_UART == 1
37         RK319X_DEVICE(UART1),
38 #elif CONFIG_RK_DEBUG_UART == 2
39         RK319X_DEVICE(UART2),
40 #elif CONFIG_RK_DEBUG_UART == 3
41         RK319X_DEVICE(UART3),
42 #endif
43         RK319X_DEVICE(GRF),
44         RK319X_DEVICE(BB_GRF),
45         RK319X_DEVICE(CRU),
46         RK319X_DEVICE(PMU),
47         RK319X_DEVICE(GPIO0),
48         RK319X_DEVICE(GPIO1),
49         RK319X_DEVICE(GPIO2),
50         RK319X_DEVICE(GPIO3),
51         RK319X_DEVICE(GPIO4),
52         RK319X_DEVICE(TIMER),
53         RK319X_DEVICE(EFUSE),
54         RK319X_DEVICE(PWM),
55         RK319X_DEVICE(DDR_PCTL),
56         RK319X_DEVICE(DDR_PUBL),
57 };
58
59 void __init rk30_map_common_io(void)
60 {
61         iotable_init(rk319x_io_desc, ARRAY_SIZE(rk319x_io_desc));
62 }