From: John Hodge Date: Sun, 22 Sep 2013 15:49:29 +0000 (+0800) Subject: Kernel/armv7 - Enabled UART input on tegra2 X-Git-Tag: rel0.15~175 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=a3d5866d4aa87dd93db40e9e194fea6f2b0047a4;p=tpg%2Facess2.git Kernel/armv7 - Enabled UART input on tegra2 --- diff --git a/KernelLand/Kernel/arch/armv7/debug.c b/KernelLand/Kernel/arch/armv7/debug.c index dd87e7ee..4f169a35 100644 --- a/KernelLand/Kernel/arch/armv7/debug.c +++ b/KernelLand/Kernel/arch/armv7/debug.c @@ -27,7 +27,11 @@ void StartupPrint(const char *str); void Debug_int_SerialIRQHandler(int IRQ, void *unused) { volatile Uint32 *regs = (void*)UART0_BASE; + #if PLATFORM_is_realview_pb if( !(regs[15] & 0x10) ) { + #else + if( !(regs[5] & 1) ) { + #endif // RX Int hadn't fired Debug("No IRQ %x %x", regs[15], regs[0]); return ; @@ -44,8 +48,13 @@ void Debug_PutCharDebug(char ch) volatile Uint32 *regs = (void*)UART0_BASE; if( !giDebug_SerialInitialised ) { + #if PLATFORM_is_tegra2 + // 16550 (i.e. PC) compatible + regs[1] = 5; // Enable RX interrupt + #else regs[14] = 0x10; // Enable RX interrupt regs[13] = (1<<1); // Set RX trigger to 1 byte + #endif giDebug_SerialInitialised = 1; } @@ -55,7 +64,6 @@ void Debug_PutCharDebug(char ch) ; #endif -// *(volatile Uint32*)(SERIAL_BASE + SERIAL_REG_DATA) = ch; regs[0] = ch; }