qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 2/4] omap1: add OSC_12M_SEL Register support


From: Jean-Christophe PLAGNIOL-VILLARD
Subject: [Qemu-devel] [PATCH 2/4] omap1: add OSC_12M_SEL Register support
Date: Sun, 16 Nov 2008 22:18:56 +0100

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <address@hidden>
---
 hw/omap1.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/hw/omap1.c b/hw/omap1.c
index 0c3b5cd..45ee567 100644
--- a/hw/omap1.c
+++ b/hw/omap1.c
@@ -2038,6 +2038,8 @@ static uint32_t omap_uart_read(void *opaque, 
target_phys_addr_t addr)
         return 0x0;
     case 0x48: /* EBLR */
         return s->eblr;
+    case 0x4C: /* OSC_12M_SEL */
+        return 0;
     case 0x50: /* MVR */
         return 0x30;
     case 0x54: /* SYSC */
@@ -2073,6 +2075,8 @@ static void omap_uart_write(void *opaque, 
target_phys_addr_t addr,
     case 0x48: /* EBLR */
         s->eblr = value & 0xff;
         break;
+    case 0x4C: /* OSC_12M_SEL */
+        break;
     case 0x44: /* SSR */
     case 0x50: /* MVR */
     case 0x58: /* SYSS */
-- 
1.5.6.5





reply via email to

[Prev in Thread] Current Thread [Next in Thread]