Displaying 2 results from an estimated 2 matches for "com1_port".
2013 Jul 12
0
[PATCH 001/001] core/serial: Add support for serial output functions.
...+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the
+ * Free Software Foundation, Inc.,
+ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+*/
+
+#ifndef _SERIAL_H_
+#define _SERIAL_H_
+
+/* COM Port / IO Port */
+#define COM1_PORT 0x3F8
+#define COM2_PORT 0x02F8
+#define COM3_PORT 0x03E8
+#define COM4_PORT 0x02E8
+
+/* Data Registers */
+#define COM_INTR_ENABLE_REG 1 /* Interrupt Enable Register */
+#define COM_INTR_ID_REG 2 /* Interrupt Ident Register (IN) */
+#define COM_FIFO_CTRL_REG 2 /* FIFO Control Registe...
2013 Jul 12
2
[PATCH 001/001] core/serial: Add support for serial output functions.
...+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the
+ * Free Software Foundation, Inc.,
+ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+*/
+
+#ifndef _SERIAL_H_
+#define _SERIAL_H_
+
+/* COM Port / IO Port */
+#define COM1_PORT 0x3F8
+#define COM2_PORT 0x02F8
+#define COM3_PORT 0x03E8
+#define COM4_PORT 0x02E8
+
+/* Data Registers */
+#define COM_INTR_ENABLE_REG 1 /* Interrupt Enable Register */
+#define COM_INTR_ID_REG 2 /* Interrupt Ident Register (IN) */
+#define COM_FIFO_CTRL_REG 2 /* FIFO Control Register (OUT) */
+...