2021-02-09 06:25:47 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SOC_H_
|
|
|
|
#define __SOC_H_
|
|
|
|
|
2021-02-18 08:09:20 +08:00
|
|
|
#ifdef CONFIG_BOARD_QEMU_X86_LAKEMONT
|
|
|
|
/* QEMU uses IO port based UART */
|
|
|
|
#define UART_NS16550_ACCESS_IOPORT 0x3f8
|
|
|
|
#endif
|
|
|
|
|
2021-02-09 06:25:47 +08:00
|
|
|
#endif /* __SOC_H_ */
|