/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (c) 2014, Linaro Limited
 */
#ifndef __DRIVERS_PL011_H
#define __DRIVERS_PL011_H

#include <types_ext.h>
#include <drivers/serial.h>

#define PL011_REG_SIZE	0x1000

struct pl011_data {
	struct io_pa_va base;
	struct serial_chip chip;
};

void pl011_init(struct pl011_data *pd, paddr_t pbase, uint32_t uart_clk,
		uint32_t baud_rate);

#endif /* __DRIVERS_PL011_H */
