blob: 7027ea076dbf313e124dfabb60e7565d2def537c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass6494d702014-02-26 15:59:18 -07002/*
3 * Copyright (c) 2013 Google, Inc
4 *
5 * (C) Copyright 2012
6 * Pavel Herrmann <morpheus.ibis@gmail.com>
Simon Glass6494d702014-02-26 15:59:18 -07007 */
8
9#ifndef _DM_UCLASS_ID_H
10#define _DM_UCLASS_ID_H
11
12/* TODO(sjg@chromium.org): this could be compile-time generated */
13enum uclass_id {
14 /* These are used internally by driver model */
15 UCLASS_ROOT = 0,
16 UCLASS_DEMO,
17 UCLASS_TEST,
18 UCLASS_TEST_FDT,
Simon Glass1ca7e202014-07-23 06:55:18 -060019 UCLASS_TEST_BUS,
Simon Glass98561572017-04-23 20:10:44 -060020 UCLASS_TEST_PROBE,
Mario Sixe8d52912018-03-12 14:53:33 +010021 UCLASS_TEST_DUMMY,
Simon Glassc60e1f22014-10-13 23:41:53 -060022 UCLASS_SPI_EMUL, /* sandbox SPI device emulator */
Simon Glassc70c71d2014-12-10 08:55:49 -070023 UCLASS_I2C_EMUL, /* sandbox I2C device emulator */
Simon Glass36d0d3b2015-03-05 12:25:28 -070024 UCLASS_PCI_EMUL, /* sandbox PCI device emulator */
Simon Glass019808f2015-03-25 12:22:37 -060025 UCLASS_USB_EMUL, /* sandbox USB bus device emulator */
Mario Six9a8bcab2018-08-09 14:51:18 +020026 UCLASS_AXI_EMUL, /* sandbox AXI bus device emulator */
Simon Glass3d7cf412015-04-14 21:03:19 -060027 UCLASS_SIMPLE_BUS, /* bus with child devices */
Simon Glass6494d702014-02-26 15:59:18 -070028
Simon Glass3d7cf412015-04-14 21:03:19 -060029 /* U-Boot uclasses start here - in alphabetical order */
Przemyslaw Marczak5decbf52015-10-27 13:08:00 +010030 UCLASS_ADC, /* Analog-to-digital converter */
Simon Glassa2196392016-05-01 11:35:52 -060031 UCLASS_AHCI, /* SATA disk controller */
Simon Glass09d71aa2016-02-29 15:25:55 -070032 UCLASS_BLK, /* Block device */
Simon Glassf26c8a82015-06-23 15:39:15 -060033 UCLASS_CLK, /* Clock source, e.g. used by peripherals */
Simon Glass3d7cf412015-04-14 21:03:19 -060034 UCLASS_CPU, /* CPU, typically part of an SoC */
35 UCLASS_CROS_EC, /* Chrome OS EC */
Simon Glass2dcf1432016-01-21 19:45:00 -070036 UCLASS_DISPLAY, /* Display (e.g. DisplayPort, HDMI) */
Mugunthan V Na0594ce2016-02-15 15:31:37 +053037 UCLASS_DMA, /* Direct Memory Access */
Heinrich Schuchardt05ef48a2018-01-21 19:29:30 +010038 UCLASS_EFI, /* EFI managed devices */
Simon Glass3d7cf412015-04-14 21:03:19 -060039 UCLASS_ETH, /* Ethernet device */
Simon Glass0040b942014-07-23 06:55:17 -060040 UCLASS_GPIO, /* Bank of general-purpose I/O pins */
Masahiro Yamada573a3812017-04-14 11:10:24 +090041 UCLASS_FIRMWARE, /* Firmware */
Simon Glass3d7cf412015-04-14 21:03:19 -060042 UCLASS_I2C, /* I2C bus */
43 UCLASS_I2C_EEPROM, /* I2C EEPROM device */
44 UCLASS_I2C_GENERIC, /* Generic I2C device */
Simon Glass3d1957f2015-08-03 08:19:21 -060045 UCLASS_I2C_MUX, /* I2C multiplexer */
Bin Meng68e6f222017-09-10 05:12:51 -070046 UCLASS_IDE, /* IDE device */
Mario Sixa63e54a2018-08-09 14:51:16 +020047 UCLASS_AXI, /* AXI bus */
Simon Glasse76187a2016-01-19 21:32:25 -070048 UCLASS_IRQ, /* Interrupt controller */
Simon Glass34ab37e2015-09-08 11:15:11 -060049 UCLASS_KEYBOARD, /* Keyboard input device */
Simon Glass59171122015-06-23 15:38:45 -060050 UCLASS_LED, /* Light-emitting diode (LED) */
Simon Glass3d7cf412015-04-14 21:03:19 -060051 UCLASS_LPC, /* x86 'low pin count' interface */
Stephen Warren62389352016-05-13 15:50:29 -060052 UCLASS_MAILBOX, /* Mailbox controller */
Simon Glass3d7cf412015-04-14 21:03:19 -060053 UCLASS_MASS_STORAGE, /* Mass storage device */
Thomas Chou4395e062015-10-07 20:20:51 +080054 UCLASS_MISC, /* Miscellaneous device */
Simon Glasse7ecf7c2015-06-23 15:38:48 -060055 UCLASS_MMC, /* SD / MMC card or chip */
Simon Glass3d7cf412015-04-14 21:03:19 -060056 UCLASS_MOD_EXP, /* RSA Mod Exp device */
Thomas Choud8587992015-11-07 14:20:31 +080057 UCLASS_MTD, /* Memory Technology Device (MTD) device */
Simon Glass55447572016-01-17 16:11:14 -070058 UCLASS_NORTHBRIDGE, /* Intel Northbridge / SDRAM controller */
Zhikang Zhangffab6942017-08-03 02:30:56 -070059 UCLASS_NVME, /* NVM Express device */
Simon Glassf563dc12016-01-21 19:44:58 -070060 UCLASS_PANEL, /* Display panel, such as an LCD */
Simon Glass363bf772016-01-21 19:44:56 -070061 UCLASS_PANEL_BACKLIGHT, /* Backlight controller for panel */
Simon Glass3d7cf412015-04-14 21:03:19 -060062 UCLASS_PCH, /* x86 platform controller hub */
63 UCLASS_PCI, /* PCI bus */
64 UCLASS_PCI_GENERIC, /* Generic PCI bus device */
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020065 UCLASS_PHY, /* Physical Layer (PHY) device */
Masahiro Yamadad90a5a32015-08-27 12:44:29 +090066 UCLASS_PINCONFIG, /* Pin configuration node device */
Bin Meng6f0e7a32016-06-22 02:29:47 -070067 UCLASS_PINCTRL, /* Pinctrl (pin muxing/configuration) device */
Simon Glass4e389362015-05-22 15:42:14 -060068 UCLASS_PMIC, /* PMIC I/O device */
Simon Glassfc760cb2016-01-21 19:44:54 -070069 UCLASS_PWM, /* Pulse-width modulator */
Stephen Warren61f5ddc2016-07-13 13:45:31 -060070 UCLASS_POWER_DOMAIN, /* (SoC) Power domains */
Simon Glass5fd6bad2016-01-21 19:43:31 -070071 UCLASS_PWRSEQ, /* Power sequence device */
Bin Meng6f0e7a32016-06-22 02:29:47 -070072 UCLASS_RAM, /* RAM controller */
Simon Glass4e389362015-05-22 15:42:14 -060073 UCLASS_REGULATOR, /* Regulator device */
Nishanth Menonddf56bc2015-09-17 15:42:39 -050074 UCLASS_REMOTEPROC, /* Remote Processor device */
Stephen Warren89c1e2d2016-06-17 09:43:58 -060075 UCLASS_RESET, /* Reset controller device */
Simon Glass3d7cf412015-04-14 21:03:19 -060076 UCLASS_RTC, /* Real time clock device */
Michal Simeke8a016b2016-09-08 15:06:45 +020077 UCLASS_SCSI, /* SCSI device */
Simon Glass57d92752014-09-04 16:27:26 -060078 UCLASS_SERIAL, /* Serial UART */
Ramon Fried7b384ec2018-07-02 02:57:55 +030079 UCLASS_SMEM, /* Shared memory interface */
Simon Glassd7af6a42014-10-13 23:41:52 -060080 UCLASS_SPI, /* SPI bus */
Mateusz Kulikowski04868b42016-03-31 23:12:27 +020081 UCLASS_SPMI, /* System Power Management Interface bus */
Simon Glass4c2dbef2014-10-13 23:42:06 -060082 UCLASS_SPI_FLASH, /* SPI flash */
Simon Glass4e389362015-05-22 15:42:14 -060083 UCLASS_SPI_GENERIC, /* Generic SPI flash target */
Simon Glass57251282015-06-23 15:38:43 -060084 UCLASS_SYSCON, /* System configuration device */
Stephen Warren11636252016-05-12 12:03:35 -060085 UCLASS_SYSRESET, /* System reset device */
Ye.Lie3568d22014-11-20 21:14:13 +080086 UCLASS_THERMAL, /* Thermal sensor */
Thomas Chouc8a7ba92015-10-09 13:46:34 +080087 UCLASS_TIMER, /* Timer device */
Simon Glassf255d312015-08-22 18:31:31 -060088 UCLASS_TPM, /* Trusted Platform Module TIS interface */
Simon Glassde312132015-03-25 12:21:59 -060089 UCLASS_USB, /* USB bus */
Simon Glass449230f2015-03-25 12:22:31 -060090 UCLASS_USB_DEV_GENERIC, /* USB generic device */
Simon Glass3d7cf412015-04-14 21:03:19 -060091 UCLASS_USB_HUB, /* USB hub */
Simon Glass1acafc72016-01-18 19:52:15 -070092 UCLASS_VIDEO, /* Video or LCD device */
Simon Glass801ab9e2015-07-02 18:16:08 -060093 UCLASS_VIDEO_BRIDGE, /* Video bridge, e.g. DisplayPort to LVDS */
Simon Glass83510762016-01-18 19:52:17 -070094 UCLASS_VIDEO_CONSOLE, /* Text console driver for video device */
maxims@google.com0753bc22017-04-17 12:00:21 -070095 UCLASS_WDT, /* Watchdot Timer driver */
Simon Glass6494d702014-02-26 15:59:18 -070096
Simon Glass6494d702014-02-26 15:59:18 -070097 UCLASS_COUNT,
98 UCLASS_INVALID = -1,
99};
100
101#endif