debug-macro.S 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * Debugging macro for DaVinci
 *
 * Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
 *
 * 2007 (c) MontaVista Software, Inc. This file is licensed under
 * the terms of the GNU General Public License version 2. This program
 * is licensed "as is" without any warranty of any kind, whether express
 * or implied.
 */

12 13 14 15 16 17 18 19
/* Modifications
 * Jan 2009	Chaithrika U S	Added senduart, busyuart, waituart
 *				macros, based on debug-8250.S file
 *				but using 32-bit accesses required for
 *                              some davinci devices.
 */

#include <linux/serial_reg.h>
20 21 22

#include <mach/serial.h>

23 24
#define UART_SHIFT	2

25 26 27 28 29
		.pushsection .data
davinci_uart_phys:	.word	0
davinci_uart_virt:	.word	0
		.popsection

30
		.macro addruart, rp, rv, tmp
31 32

		/* Use davinci_uart_phys/virt if already configured */
33 34 35 36 37 38 39
10:		adr	\rp, 99f		@ get effective addr of 99f
		ldr	\rv, [\rp]		@ get absolute addr of 99f
		sub	\rv, \rv, \rp		@ offset between the two
		ldr	\rp, [\rp, #4]		@ abs addr of omap_uart_phys
		sub	\tmp, \rp, \rv		@ make it effective
		ldr	\rp, [\tmp, #0]		@ davinci_uart_phys
		ldr	\rv, [\tmp, #4]		@ davinci_uart_virt
40 41
		cmp	\rp, #0			@ is port configured?
		cmpne	\rv, #0
42
		bne	100f			@ already configured
43

44
		/* Check the debug UART address set in uncompress.h */
45 46 47 48 49
		and	\rp, pc, #0xff000000
		ldr	\rv, =DAVINCI_UART_INFO_OFS
		add	\rp, \rp, \rv

		/* Copy uart phys address from decompressor uart info */
50 51
		ldr	\rv, [\rp, #0]
		str	\rv, [\tmp, #0]
52 53

		/* Copy uart virt address from decompressor uart info */
54 55
		ldr	\rv, [\rp, #4]
		str	\rv, [\tmp, #4]
56 57

		b	10b
58 59 60 61 62 63 64

		.align
99:		.word	.
		.word	davinci_uart_phys
		.ltorg

100:
65 66
		.endm

67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
		.macro	senduart,rd,rx
		str	\rd, [\rx, #UART_TX << UART_SHIFT]
		.endm

		.macro	busyuart,rd,rx
1002:		ldr	\rd, [\rx, #UART_LSR << UART_SHIFT]
		and	\rd, \rd, #UART_LSR_TEMT | UART_LSR_THRE
		teq	\rd, #UART_LSR_TEMT | UART_LSR_THRE
		bne	1002b
		.endm

		.macro	waituart,rd,rx
#ifdef FLOW_CONTROL
1001:		ldr	\rd, [\rx, #UART_MSR << UART_SHIFT]
		tst	\rd, #UART_MSR_CTS
		beq	1001b
#endif
		.endm