blob: 34b29b4cae3963b47df881b5f8b2ae1c4f782198 [file] [log] [blame]
/*
* Copyright 2017, Data61, CSIRO (ABN 41 687 119 230)
*
* SPDX-License-Identifier: BSD-2-Clause
*/
/*
* Contains definitions for all character devices on this
* platform
*/
#include "../../chardev.h"
#include "../../common.h"
#include <utils/arith.h>
static const int uart1_irqs[] = {UART1_IRQ, -1};
static const int uart2_irqs[] = {UART2_IRQ, -1};
static const int uart3_irqs[] = {UART3_IRQ, -1};
static const int uart4_irqs[] = {UART4_IRQ, -1};
#define UART_DEFN(devid) { \
.id = OMAP3_UART##devid, \
.paddr = UART##devid##_PADDR, \
.size = (1<<12), \
.irqs = uart##devid##_irqs, \
.init_fn = &uart_init \
}
static const struct dev_defn dev_defn[] = {
UART_DEFN(1),
UART_DEFN(2),
UART_DEFN(3),
UART_DEFN(4)
};
/* It would be nice to reuse this, but it requires knowledge of the variable *
* sized 'dev_defn' */
struct ps_chardevice*
ps_cdev_init(enum chardev_id id, const ps_io_ops_t* o,
struct ps_chardevice* d) {
int i;
for (i = 0; i < ARRAY_SIZE(dev_defn); i++) {
if (dev_defn[i].id == id) {
return (dev_defn[i].init_fn(dev_defn + i, o, d)) ? NULL : d;
}
}
return NULL;
}