blob: 265b4cf83b5996c95de41745d2d82721ae6a7b27 [file] [log] [blame]
Dario Binacchi0f4effb2020-12-30 00:16:25 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Pulse-Width Modulation Subsystem (pwmss)
4 *
5 * Copyright (C) 2020 Dario Binacchi <dariobin@libero.it>
6 */
7
8#include <common.h>
9#include <dm.h>
10
11static const struct udevice_id ti_pwmss_ids[] = {
12 {.compatible = "ti,am33xx-pwmss"},
13 {}
14};
15
16U_BOOT_DRIVER(ti_pwmss) = {
17 .name = "ti_pwmss",
18 .id = UCLASS_SIMPLE_BUS,
19 .of_match = ti_pwmss_ids,
20 .bind = dm_scan_fdt_dev,
21};