]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/serial/serial_tegra.c
Merge branch 'u-boot-ti/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / drivers / serial / serial_tegra.c
1 /*
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
12 static const struct udevice_id tegra_serial_ids[] = {
13         { .compatible = "nvidia,tegra20-uart" },
14         { }
15 };
16
17 static 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 }
29 U_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 };