1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/*
* arch/arm/mach-tegra/board-p852-sku23.c
*
* Copyright (c) 2010-2011, NVIDIA Corporation.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#include "board-p852.h"
static inline void __init p852_sku23_spi_init(void)
{
p852_sku_peripherals |= P852_SKU_SPI_ENABLE;
p852_spi_peripherals |=
((P852_SPI_SLAVE | P852_SPI_ENABLE) << P852_SPI1_SHIFT) |
((P852_SPI_SLAVE | P852_SPI_ENABLE) << P852_SPI2_SHIFT) |
((P852_SPI_SLAVE | P852_SPI_ENABLE) << P852_SPI3_SHIFT) |
((P852_SPI_SLAVE | P852_SPI_ENABLE) << P852_SPI4_SHIFT);
}
static inline void p852_sku23_sdhci_init(void)
{
p852_sku_peripherals |= P852_SKU_SDHCI_ENABLE;
p852_sdhci_peripherals |= (P852_SDHCI_ENABLE << P852_SDHCI1_SHIFT) |
(P852_SDHCI_ENABLE << P852_SDHCI2_SHIFT) |
((P852_SDHCI_ENABLE | P852_SDHCI_CD_EN) << P852_SDHCI3_SHIFT);
p852_sdhci_platform_data[1].is_8bit = true;
p852_sdhci_platform_data[2].cd_gpio = TEGRA_GPIO_PD7;
}
static inline void p852_sku23_i2s_init(void)
{
p852_sku_peripherals |= P852_SKU_I2S_ENABLE;
p852_i2s_peripherals |=
((P852_I2S_TDM | P852_I2S_ENABLE) << P852_I2S1_SHIFT) |
((P852_I2S_TDM | P852_I2S_ENABLE) << P852_I2S2_SHIFT);
}
static inline void p852_sku23_uart_init(void)
{
p852_sku_peripherals |= P852_SKU_UART_ENABLE;
p852_uart_peripherals |=
((P852_UART_ENABLE) << P852_UARTA_SHIFT) |
((P852_UART_ENABLE | P852_UART_HS) << P852_UARTB_SHIFT) |
((P852_UART_ENABLE | P852_UART_DB) << P852_UARTC_SHIFT);
}
static inline void p852_sku23_display_init(void)
{
p852_sku_peripherals |= P852_SKU_DISPLAY_ENABLE;
p852_display_peripherals |=
(P852_DISP_ENABLE << P852_DISPA_SHIFT);
}
static inline void p852_sku23_i2c_init(void)
{
p852_sku_peripherals |= P852_SKU_I2C_ENABLE;
p852_i2c_peripherals |=
((P852_I2C_ENABLE) << P852_I2C1_SHIFT) |
((P852_I2C_ENABLE) << P852_I2C2_SHIFT) |
((P852_I2C_ENABLE) << P852_I2C3_SHIFT) |
((P852_I2C_ENABLE) << P852_I2C4_SHIFT);
}
#ifdef CONFIG_TEGRA_SPI_I2S
static struct tegra_spi_i2s_platform_data spi_i2s_data = {
.gpio_i2s = {
.gpio_no = TEGRA_GPIO_PS3,
.active_state = 0,
},
.gpio_spi = {
.gpio_no = TEGRA_GPIO_PS4,
.active_state = 0,
},
.spi_i2s_timeout_ms = 25,
};
static inline void p852_sku23_spi_i2s_init(void)
{
tegra_spi_i2s_device.platform_data = &spi_i2s_data;
/* cpld_gpio_dir1 and cpld_gpio_dir2*/
tegra_pinmux_set_tristate(TEGRA_PINGROUP_KBCB, TEGRA_TRI_NORMAL);
p852_spi_i2s_init();
}
#endif
void __init p852_sku23_init(void)
{
p852_sku_peripherals |= P852_SKU_NAND_ENABLE;
p852_sku23_spi_init();
p852_sku23_i2s_init();
p852_sku23_uart_init();
p852_sku23_sdhci_init();
p852_sku23_i2c_init();
p852_sku23_display_init();
p852_common_init();
#ifdef CONFIG_TEGRA_SPI_I2S
p852_sku23_spi_i2s_init();
#endif
}
|