2015-04-11 07:44:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2015, Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2015-12-04 23:09:39 +08:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Board configuration macros for the ia32 platform
|
|
|
|
*
|
2015-10-21 00:42:33 +08:00
|
|
|
* This header file is used to specify and describe board-level aspects for
|
|
|
|
* the 'ia32' platform.
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-12-17 21:54:35 +08:00
|
|
|
#ifndef __SOC_H_
|
|
|
|
#define __SOC_H_
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
#include <misc/util.h>
|
|
|
|
|
|
|
|
#ifndef _ASMLANGUAGE
|
2015-08-06 03:13:36 +08:00
|
|
|
#include <device.h>
|
2017-10-14 06:45:02 +08:00
|
|
|
#include <random/rand32.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
#endif
|
|
|
|
|
2015-08-06 04:39:27 +08:00
|
|
|
#define INT_VEC_IRQ0 0x20 /* vector number for IRQ0 */
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2016-03-30 02:01:11 +08:00
|
|
|
/*
|
|
|
|
* UART
|
|
|
|
*/
|
|
|
|
#define UART_NS16550_ACCESS_IOPORT
|
|
|
|
|
|
|
|
#define UART_NS16550_PORT_0_BASE_ADDR 0x03F8
|
|
|
|
#define UART_NS16550_PORT_0_IRQ 4
|
|
|
|
#define UART_NS16550_PORT_0_CLK_FREQ 1843200
|
|
|
|
|
|
|
|
#define UART_NS16550_PORT_1_BASE_ADDR 0x02F8
|
|
|
|
#define UART_NS16550_PORT_1_IRQ 3
|
|
|
|
#define UART_NS16550_PORT_1_CLK_FREQ 1843200
|
|
|
|
|
2016-03-30 06:11:59 +08:00
|
|
|
#ifdef CONFIG_IOAPIC
|
|
|
|
#include <drivers/ioapic.h>
|
|
|
|
#define UART_IRQ_FLAGS (IOAPIC_EDGE | IOAPIC_HIGH)
|
|
|
|
#endif /* CONFIG_IOAPIC */
|
2016-03-30 02:01:11 +08:00
|
|
|
|
2015-12-17 21:54:35 +08:00
|
|
|
#endif /* __SOC_H_ */
|