summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/Uart.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/m5/objects/Uart.py')
-rw-r--r--src/python/m5/objects/Uart.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/python/m5/objects/Uart.py b/src/python/m5/objects/Uart.py
new file mode 100644
index 000000000..8e1fd1a37
--- /dev/null
+++ b/src/python/m5/objects/Uart.py
@@ -0,0 +1,16 @@
+from m5 import build_env
+from m5.config import *
+from Device import BasicPioDevice
+
+class Uart(BasicPioDevice):
+ type = 'Uart'
+ abstract = True
+ sim_console = Param.SimConsole(Parent.any, "The console")
+
+class Uart8250(Uart):
+ type = 'Uart8250'
+
+if build_env['ALPHA_TLASER']:
+ class Uart8530(Uart):
+ type = 'Uart8530'
+