You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
571 B
24 lines
571 B
/*
|
|
* Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef __COREBOOT_H__
|
|
#define __COREBOOT_H__
|
|
|
|
#include <types.h>
|
|
|
|
typedef struct {
|
|
uint32_t type; /* always 2 (memory-mapped) on ARM */
|
|
uint32_t baseaddr;
|
|
uint32_t baud;
|
|
uint32_t regwidth; /* in bytes, i.e. usually 4 */
|
|
uint32_t input_hertz;
|
|
uint32_t uart_pci_addr; /* unused on current ARM systems */
|
|
} coreboot_serial_t;
|
|
extern coreboot_serial_t coreboot_serial;
|
|
|
|
void coreboot_table_setup(void *base);
|
|
|
|
#endif /* __COREBOOT_H__ */
|
|
|