summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/include/mach/uncompress.h
blob: f88e3c2ca0193089ce8566c4e19e4680d86357d5 (plain)
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
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
 * arch/arm/mach-tegra/include/mach/uncompress.h
 *
 * Copyright (C) 2010 Google, Inc.
 *
 * Author:
 *	Colin Cross <ccross@google.com>
 *	Erik Gilling <konkers@google.com>
 *
 * 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.
 *
 */

#ifndef __MACH_TEGRA_UNCOMPRESS_H
#define __MACH_TEGRA_UNCOMPRESS_H

#include <linux/types.h>
#include <linux/serial_reg.h>

#include <mach/iomap.h>

static void putc(int c)
{
	volatile u8 *uart = (volatile u8 *)TEGRA_DEBUG_UART_BASE;
	int shift = 2;

	if (uart == NULL)
		return;

	while (!(uart[UART_LSR << shift] & UART_LSR_THRE))
		barrier();
	uart[UART_TX << shift] = c;
}

static inline void flush(void)
{
}

static inline void konk_delay(int delay)
{
	int i;

	for (i = 0; i < (1000 * delay); i++) {
		barrier();
	}
}


static inline void arch_decomp_setup(void)
{
	volatile u8 *uart = (volatile u8 *)TEGRA_DEBUG_UART_BASE;
	int shift = 2;
	volatile u32 *addr;

	if (uart == NULL)
		return;

/*
	addr = (volatile u32 *)0x70000014;
	*addr &= ~(1<<29);

	addr = (volatile u32 *)0x70000084;
	*addr &= ~(3<<2);

	addr = (volatile u32 *)0x700000b0;
	*addr &= ~(3<<24);

	konk_delay(5);

*/

	/* OSC_CTRL_0 */
	/*addr = (volatile u32 *)0x60006050;*/

	/* PLLP_BASE_0 */
	addr = (volatile u32 *)0x600060a0;
	*addr = 0x5011b00c;

	/* PLLP_OUTA_0 */
	addr = (volatile u32 *)0x600060a4;
	*addr = 0x10031c03;

	/* PLLP_OUTB_0 */
	addr = (volatile u32 *)0x600060a8;
	*addr = 0x06030a03;

	/* PLLP_MISC_0 */
	addr = (volatile u32 *)0x600060ac;
	*addr = 0x00000800;

	konk_delay(1000);

	/* UARTD clock source is PLLP_OUT0 */
	addr = (volatile u32 *)0x600061c0;
	*addr = 0;

	/* Enable clock to UARTD */
	addr = (volatile u32 *)0x60006018;
	*addr |= (1<<1);

	konk_delay(5);

	/* Deassert reset to UARTD */
	addr = (volatile u32 *)0x6000600c;
	*addr &= ~(1<<1);

	konk_delay(5);

	uart[UART_LCR << shift] |= UART_LCR_DLAB;
	uart[UART_DLL << shift] = 0x75;
	uart[UART_DLM << shift] = 0x0;
	uart[UART_LCR << shift] = 3;
}

static inline void arch_decomp_wdog(void)
{
}

#endif