2015-07-16 15:47:25 -04:00
|
|
|
/* board.h - board configuration macros for the ia32 platform */
|
2015-04-10 16:44:37 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2015, Wind River Systems, Inc.
|
|
|
|
*
|
2015-10-06 11:00:37 -05:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2015-04-10 16:44:37 -07:00
|
|
|
*
|
2015-10-06 11:00:37 -05:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-04-10 16:44:37 -07:00
|
|
|
*
|
2015-10-06 11:00:37 -05:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2015-04-10 16:44:37 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
DESCRIPTION
|
|
|
|
This header file is used to specify and describe board-level aspects for
|
2015-07-16 15:47:25 -04:00
|
|
|
the 'ia32' platform.
|
2015-07-01 17:22:39 -04:00
|
|
|
*/
|
2015-04-10 16:44:37 -07:00
|
|
|
|
|
|
|
#ifndef __INCboardh
|
|
|
|
#define __INCboardh
|
|
|
|
|
|
|
|
#include <misc/util.h>
|
|
|
|
|
|
|
|
#ifndef _ASMLANGUAGE
|
2015-08-05 12:13:36 -07:00
|
|
|
#include <device.h>
|
2015-04-10 16:44:37 -07:00
|
|
|
#include <drivers/rand32.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_IOAPIC
|
|
|
|
#include <drivers/ioapic.h>
|
|
|
|
#ifdef CONFIG_SERIAL_INTERRUPT_LEVEL
|
|
|
|
#ifdef CONFIG_SERIAL_INTERRUPT_LOW
|
|
|
|
#define UART_IOAPIC_FLAGS (IOAPIC_LEVEL | IOAPIC_LOW)
|
|
|
|
#else
|
|
|
|
#define UART_IOAPIC_FLAGS (IOAPIC_LEVEL)
|
|
|
|
#endif
|
|
|
|
#else /* edge triggered interrupt */
|
|
|
|
#ifdef CONFIG_SERIAL_INTERRUPT_LOW
|
|
|
|
/* generate interrupt on falling edge */
|
|
|
|
#define UART_IOAPIC_FLAGS (IOAPIC_LOW)
|
|
|
|
#else
|
|
|
|
/* generate interrupt on raising edge */
|
|
|
|
#define UART_IOAPIC_FLAGS (0)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2015-08-05 16:39:27 -04:00
|
|
|
#define INT_VEC_IRQ0 0x20 /* vector number for IRQ0 */
|
2015-04-10 16:44:37 -07:00
|
|
|
|
|
|
|
/* serial port (aka COM port) information */
|
|
|
|
|
2015-08-05 12:13:36 -07:00
|
|
|
#ifdef CONFIG_NS16550
|
|
|
|
|
2015-04-10 16:44:37 -07:00
|
|
|
#define COM1_BASE_ADRS 0x3f8
|
|
|
|
#define COM1_INT_LVL 0x04 /* COM1 connected to IRQ4 */
|
|
|
|
#define COM1_INT_VEC (INT_VEC_IRQ0 + COM1_INT_LVL)
|
2015-08-05 16:39:27 -04:00
|
|
|
#define COM1_INT_PRI 3
|
2015-04-10 16:44:37 -07:00
|
|
|
#define COM1_BAUD_RATE 115200
|
|
|
|
|
|
|
|
#define COM2_BASE_ADRS 0x2f8
|
|
|
|
#define COM2_INT_LVL 0x03 /* COM2 connected to IRQ3 */
|
|
|
|
#define COM2_INT_VEC (INT_VEC_IRQ0 + COM2_INT_LVL)
|
2015-08-05 16:39:27 -04:00
|
|
|
#define COM2_INT_PRI 3
|
2015-04-10 16:44:37 -07:00
|
|
|
#define COM2_BAUD_RATE 115200
|
|
|
|
|
|
|
|
#define UART_REG_ADDR_INTERVAL 1 /* address diff of adjacent regs. */
|
|
|
|
#define UART_XTAL_FREQ 1843200
|
|
|
|
|
|
|
|
/* uart configuration settings */
|
|
|
|
|
|
|
|
/* Generic definitions */
|
2015-08-05 12:13:36 -07:00
|
|
|
#define CONFIG_UART_BAUDRATE COM1_BAUD_RATE
|
|
|
|
#define CONFIG_UART_PORT_0_REGS COM1_BASE_ADRS
|
|
|
|
#define CONFIG_UART_PORT_0_IRQ COM1_INT_LVL
|
|
|
|
#define CONFIG_UART_PORT_0_IRQ_PRIORITY COM1_INT_PRI
|
|
|
|
#define CONFIG_UART_PORT_1_REGS COM2_BASE_ADRS
|
|
|
|
#define CONFIG_UART_PORT_1_IRQ COM2_INT_LVL
|
|
|
|
#define CONFIG_UART_PORT_1_IRQ_PRIORITY COM2_INT_PRI
|
2015-04-10 16:44:37 -07:00
|
|
|
|
2015-10-08 10:04:41 +03:00
|
|
|
/* Simple UART definitions */
|
|
|
|
#define CONFIG_UART_SIMPLE_INDEX 1
|
|
|
|
#define CONFIG_UART_SIMPLE_BAUDRATE CONFIG_UART_BAUDRATE
|
|
|
|
#define CONFIG_UART_SIMPLE_IRQ COM2_INT_LVL
|
|
|
|
#define CONFIG_UART_SIMPLE_INT_PRI COM2_INT_PRI
|
|
|
|
#define CONFIG_UART_SIMPLE_FREQ UART_XTAL_FREQ
|
|
|
|
|
2015-08-10 15:02:04 -07:00
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
extern struct device * const uart_devs[];
|
|
|
|
#endif
|
|
|
|
|
2015-04-10 16:44:37 -07:00
|
|
|
/* Console definitions */
|
2015-08-12 10:33:56 -07:00
|
|
|
#if defined(CONFIG_UART_CONSOLE)
|
|
|
|
|
2015-08-05 12:13:36 -07:00
|
|
|
#define CONFIG_UART_CONSOLE_IRQ COM1_INT_LVL
|
|
|
|
#define CONFIG_UART_CONSOLE_INT_PRI COM1_INT_PRI
|
|
|
|
|
2015-08-10 15:02:04 -07:00
|
|
|
#define UART_CONSOLE_DEV (uart_devs[CONFIG_UART_CONSOLE_INDEX])
|
2015-04-10 16:44:37 -07:00
|
|
|
|
2015-08-12 10:33:56 -07:00
|
|
|
#endif /* CONFIG_UART_CONSOLE */
|
|
|
|
|
2015-04-13 14:38:44 +03:00
|
|
|
/* Bluetooth UART definitions */
|
2015-08-10 13:29:53 -07:00
|
|
|
#if defined(CONFIG_BLUETOOTH_UART)
|
|
|
|
|
2015-04-13 14:38:44 +03:00
|
|
|
#define CONFIG_BLUETOOTH_UART_INDEX 1
|
|
|
|
#define CONFIG_BLUETOOTH_UART_IRQ COM2_INT_LVL
|
|
|
|
#define CONFIG_BLUETOOTH_UART_INT_PRI COM2_INT_PRI
|
|
|
|
#define CONFIG_BLUETOOTH_UART_FREQ UART_XTAL_FREQ
|
|
|
|
#define CONFIG_BLUETOOTH_UART_BAUDRATE CONFIG_UART_BAUDRATE
|
|
|
|
|
2015-08-10 15:02:04 -07:00
|
|
|
#define BT_UART_DEV (uart_devs[CONFIG_BLUETOOTH_UART_INDEX])
|
2015-08-10 13:29:53 -07:00
|
|
|
|
|
|
|
#endif /* CONFIG_BLUETOOTH_UART */
|
|
|
|
|
2015-08-05 12:13:36 -07:00
|
|
|
#endif /* CONFIG_NS16550 */
|
|
|
|
|
2015-04-10 16:44:37 -07:00
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
|
|
|
|
extern void _SysIntVecProgram(unsigned int vector, unsigned int);
|
|
|
|
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
|
|
|
|
#endif /* __INCboardh */
|