Dario Binacchi | 4707e38 | 2020-12-30 00:16:18 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
2 | /* | ||||
3 | * OMAP4 clock manager (cm) | ||||
4 | * | ||||
5 | * Copyright (C) 2020 Dario Binacchi <dariobin@libero.it> | ||||
6 | */ | ||||
7 | |||||
8 | #include <common.h> | ||||
9 | #include <dm.h> | ||||
10 | #include <dm/lists.h> | ||||
11 | |||||
12 | static const struct udevice_id ti_omap4_cm_ids[] = { | ||||
13 | {.compatible = "ti,omap4-cm"}, | ||||
14 | {} | ||||
15 | }; | ||||
16 | |||||
17 | U_BOOT_DRIVER(ti_omap4_cm) = { | ||||
18 | .name = "ti_omap4_cm", | ||||
19 | .id = UCLASS_SIMPLE_BUS, | ||||
20 | .of_match = ti_omap4_cm_ids, | ||||
21 | .bind = dm_scan_fdt_dev, | ||||
22 | }; |