blob: d1f89f59af330da376ae22d54ebecf61d8db1acb [file] [log] [blame]
Stephen Boyda3d3ef92011-11-08 10:33:04 -08001/*
Russell Kinga09e64f2008-08-05 16:14:15 +01002 * Copyright (C) 2007 Google, Inc.
Duy Truong790f06d2013-02-13 16:38:12 -08003 * Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
Russell Kinga09e64f2008-08-05 16:14:15 +01004 *
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#ifndef __ASM_ARCH_MSM_UNCOMPRESS_H
Stephen Boyda3d3ef92011-11-08 10:33:04 -080017#define __ASM_ARCH_MSM_UNCOMPRESS_H
Russell Kinga09e64f2008-08-05 16:14:15 +010018
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070019#include <linux/io.h>
20#include <asm/mach-types.h>
Stephen Boyda3d3ef92011-11-08 10:33:04 -080021#include <asm/processor.h>
22#include <mach/msm_iomap.h>
Sathish Ambleyf5bebd62011-11-03 23:36:36 -070023#include <mach/msm_serial_hsl_regs.h>
Stephen Boyda3d3ef92011-11-08 10:33:04 -080024
25#define UART_CSR (*(volatile uint32_t *)(MSM_DEBUG_UART_PHYS + 0x08))
26#define UART_TF (*(volatile uint32_t *)(MSM_DEBUG_UART_PHYS + 0x0c))
27
28#define UART_DM_SR (*((volatile uint32_t *)(MSM_DEBUG_UART_PHYS + 0x08)))
29#define UART_DM_CR (*((volatile uint32_t *)(MSM_DEBUG_UART_PHYS + 0x10)))
30#define UART_DM_ISR (*((volatile uint32_t *)(MSM_DEBUG_UART_PHYS + 0x14)))
31#define UART_DM_NCHAR (*((volatile uint32_t *)(MSM_DEBUG_UART_PHYS + 0x40)))
32#define UART_DM_TF (*((volatile uint32_t *)(MSM_DEBUG_UART_PHYS + 0x70)))
Russell Kinga09e64f2008-08-05 16:14:15 +010033
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070034#ifndef CONFIG_DEBUG_ICEDCC
Russell Kinga09e64f2008-08-05 16:14:15 +010035static void putc(int c)
36{
Pavel Machek6339f662009-11-02 11:48:29 +010037#if defined(MSM_DEBUG_UART_PHYS)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070038 unsigned long base = MSM_DEBUG_UART_PHYS;
39
Stephen Boyda3d3ef92011-11-08 10:33:04 -080040#ifdef CONFIG_MSM_HAS_DEBUG_UART_HS
41 /*
42 * Wait for TX_READY to be set; but skip it if we have a
43 * TX underrun.
44 */
Laura Abbott0f9c7762012-01-06 18:44:47 -080045 if (!(__raw_readl_no_log(base + UARTDM_SR_OFFSET) & 0x08))
46 while (!(__raw_readl_no_log(base + UARTDM_ISR_OFFSET) & 0x80))
Stephen Boyda3d3ef92011-11-08 10:33:04 -080047 cpu_relax();
48
Laura Abbott0f9c7762012-01-06 18:44:47 -080049 __raw_writel_no_log(0x300, base + UARTDM_CR_OFFSET);
50 __raw_writel_no_log(0x1, base + UARTDM_NCF_TX_OFFSET);
51 __raw_writel_no_log(c, base + UARTDM_TF_OFFSET);
Stephen Boyda3d3ef92011-11-08 10:33:04 -080052#else
Sathish Ambleybb87d5f2011-11-08 15:14:01 -080053 /* Wait for TX_READY to be set */
Laura Abbott0f9c7762012-01-06 18:44:47 -080054 while (!(__raw_readl_no_log(base + 0x08) & 0x04))
Stephen Boyda3d3ef92011-11-08 10:33:04 -080055 cpu_relax();
Laura Abbott0f9c7762012-01-06 18:44:47 -080056 __raw_writel_no_log(c, base + 0x0c);
Stephen Boyda3d3ef92011-11-08 10:33:04 -080057#endif
Pavel Machek6339f662009-11-02 11:48:29 +010058#endif
Russell Kinga09e64f2008-08-05 16:14:15 +010059}
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070060#endif
Russell Kinga09e64f2008-08-05 16:14:15 +010061
62static inline void flush(void)
63{
64}
65
66static inline void arch_decomp_setup(void)
67{
68}
69
70static inline void arch_decomp_wdog(void)
71{
72}
73
74#endif