pl011.hh (12239:ae1686aaebc5) pl011.hh (13024:aa7890e43dab)
1/*
2 * Copyright (c) 2010-2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 104 unchanged lines hidden (view full) ---

113 inline uint16_t maskInt() const { return rawInt & imsc; }
114
115 /** Wrapper to create an event out of the thing */
116 EventFunctionWrapper intEvent;
117
118 protected: // Registers
119 static const uint64_t AMBA_ID = ULL(0xb105f00d00341011);
120 static const int UART_DR = 0x000;
1/*
2 * Copyright (c) 2010-2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 104 unchanged lines hidden (view full) ---

113 inline uint16_t maskInt() const { return rawInt & imsc; }
114
115 /** Wrapper to create an event out of the thing */
116 EventFunctionWrapper intEvent;
117
118 protected: // Registers
119 static const uint64_t AMBA_ID = ULL(0xb105f00d00341011);
120 static const int UART_DR = 0x000;
121 static const int UART_RSR = 0x004;
122 static const int UART_ECR = 0x004;
121 static const int UART_FR = 0x018;
122 static const int UART_FR_CTS = 0x001;
123 static const int UART_FR_RXFE = 0x010;
124 static const int UART_FR_TXFF = 0x020;
125 static const int UART_FR_RXFF = 0x040;
126 static const int UART_FR_TXFE = 0x080;
127 static const int UART_IBRD = 0x024;
128 static const int UART_FBRD = 0x028;

--- 59 unchanged lines hidden ---
123 static const int UART_FR = 0x018;
124 static const int UART_FR_CTS = 0x001;
125 static const int UART_FR_RXFE = 0x010;
126 static const int UART_FR_TXFF = 0x020;
127 static const int UART_FR_RXFF = 0x040;
128 static const int UART_FR_TXFE = 0x080;
129 static const int UART_IBRD = 0x024;
130 static const int UART_FBRD = 0x028;

--- 59 unchanged lines hidden ---