blob: 7eb70e1de135eb18c9342fbabeb29ecb469406a0 [file] [log] [blame]
Simon Glass858530a2014-09-04 16:27:36 -06001/*
2 * Copyright (c) 2014 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <dm.h>
9#include <ns16550.h>
10#include <serial.h>
11
12static const struct udevice_id tegra_serial_ids[] = {
13 { .compatible = "nvidia,tegra20-uart" },
14 { }
15};
16
17static int tegra_serial_ofdata_to_platdata(struct udevice *dev)
18{
19 struct ns16550_platdata *plat = dev_get_platdata(dev);
20 int ret;
21
22 ret = ns16550_serial_ofdata_to_platdata(dev);
23 if (ret)
24 return ret;
25 plat->clock = V_NS16550_CLK;
26
27 return 0;
28}
29U_BOOT_DRIVER(serial_ns16550) = {
30 .name = "serial_tegra20",
31 .id = UCLASS_SERIAL,
32 .of_match = tegra_serial_ids,
33 .ofdata_to_platdata = tegra_serial_ofdata_to_platdata,
34 .platdata_auto_alloc_size = sizeof(struct ns16550_platdata),
35 .priv_auto_alloc_size = sizeof(struct NS16550),
36 .probe = ns16550_serial_probe,
37 .ops = &ns16550_serial_ops,
38};