blob: 7027ea076dbf313e124dfabb60e7565d2def537c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassdd6ab882014-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 Glassdd6ab882014-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 Glass40717422014-07-23 06:55:18 -060019 UCLASS_TEST_BUS,
Simon Glass9c433fe2017-04-23 20:10:44 -060020 UCLASS_TEST_PROBE,
Mario Six35616ef2018-03-12 14:53:33 +010021 UCLASS_TEST_DUMMY,
Simon Glass10a4a332014-10-13 23:41:53 -060022 UCLASS_SPI_EMUL, /* sandbox SPI device emulator */
Simon Glassdaa54702014-12-10 08:55:49 -070023 UCLASS_I2C_EMUL, /* sandbox I2C device emulator */
Simon Glassd9e90bb2015-03-05 12:25:28 -070024 UCLASS_PCI_EMUL, /* sandbox PCI device emulator */
Simon Glass59d66d22015-03-25 12:22:37 -060025 UCLASS_USB_EMUL, /* sandbox USB bus device emulator */
Mario Sixf95104d2018-08-09 14:51:18 +020026 UCLASS_AXI_EMUL, /* sandbox AXI bus device emulator */
Simon Glass10d8904f2015-04-14 21:03:19 -060027 UCLASS_SIMPLE_BUS, /* bus with child devices */
Simon Glassdd6ab882014-02-26 15:59:18 -070028
Simon Glass10d8904f2015-04-14 21:03:19 -060029 /* U-Boot uclasses start here - in alphabetical order */
Przemyslaw Marczake0cb85b2015-10-27 13:08:00 +010030 UCLASS_ADC, /* Analog-to-digital converter */
Simon Glass85ee1652016-05-01 11:35:52 -060031 UCLASS_AHCI, /* SATA disk controller */
Simon Glasscceee552016-02-29 15:25:55 -070032 UCLASS_BLK, /* Block device */
Simon Glass36ad2342015-06-23 15:39:15 -060033 UCLASS_CLK, /* Clock source, e.g. used by peripherals */
Simon Glass10d8904f2015-04-14 21:03:19 -060034 UCLASS_CPU, /* CPU, typically part of an SoC */
35 UCLASS_CROS_EC, /* Chrome OS EC */
Simon Glass7d3d7762016-01-21 19:45:00 -070036 UCLASS_DISPLAY, /* Display (e.g. DisplayPort, HDMI) */
Mugunthan V N8c3c9182016-02-15 15:31:37 +053037 UCLASS_DMA, /* Direct Memory Access */
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010038 UCLASS_EFI, /* EFI managed devices */
Simon Glass10d8904f2015-04-14 21:03:19 -060039 UCLASS_ETH, /* Ethernet device */
Simon Glasscebcebb2014-07-23 06:55:17 -060040 UCLASS_GPIO, /* Bank of general-purpose I/O pins */
Masahiro Yamada836c55d2017-04-14 11:10:24 +090041 UCLASS_FIRMWARE, /* Firmware */
Simon Glassc7a58902014-12-10 08:55:47 -070042 UCLASS_I2C, /* I2C bus */
Simon Glass6ca4ba02014-12-10 08:55:54 -070043 UCLASS_I2C_EEPROM, /* I2C EEPROM device */
Simon Glass10d8904f2015-04-14 21:03:19 -060044 UCLASS_I2C_GENERIC, /* Generic I2C device */
Simon Glass2a80c402015-08-03 08:19:21 -060045 UCLASS_I2C_MUX, /* I2C multiplexer */
Bin Mengb650afa2017-09-10 05:12:51 -070046 UCLASS_IDE, /* IDE device */
Mario Six573b1b92018-08-09 14:51:16 +020047 UCLASS_AXI, /* AXI bus */
Simon Glass18a8e092016-01-19 21:32:25 -070048 UCLASS_IRQ, /* Interrupt controller */
Simon Glass02f0c282015-09-08 11:15:11 -060049 UCLASS_KEYBOARD, /* Keyboard input device */
Simon Glasscce3aed2015-06-23 15:38:45 -060050 UCLASS_LED, /* Light-emitting diode (LED) */
Simon Glass10d8904f2015-04-14 21:03:19 -060051 UCLASS_LPC, /* x86 'low pin count' interface */
Stephen Warrend0107832016-05-13 15:50:29 -060052 UCLASS_MAILBOX, /* Mailbox controller */
Simon Glass10d8904f2015-04-14 21:03:19 -060053 UCLASS_MASS_STORAGE, /* Mass storage device */
Thomas Choub1ed6862015-10-07 20:20:51 +080054 UCLASS_MISC, /* Miscellaneous device */
Simon Glass1e8eb1b2015-06-23 15:38:48 -060055 UCLASS_MMC, /* SD / MMC card or chip */
Ruchika Gupta98ebb122015-01-23 16:01:52 +053056 UCLASS_MOD_EXP, /* RSA Mod Exp device */
Thomas Choue51b65e2015-11-07 14:20:31 +080057 UCLASS_MTD, /* Memory Technology Device (MTD) device */
Simon Glass29ce97e2016-01-17 16:11:14 -070058 UCLASS_NORTHBRIDGE, /* Intel Northbridge / SDRAM controller */
Zhikang Zhang182fccd2017-08-03 02:30:56 -070059 UCLASS_NVME, /* NVM Express device */
Simon Glass14d1c8e2016-01-21 19:44:58 -070060 UCLASS_PANEL, /* Display panel, such as an LCD */
Simon Glass8f790482016-01-21 19:44:56 -070061 UCLASS_PANEL_BACKLIGHT, /* Backlight controller for panel */
Simon Glass10d8904f2015-04-14 21:03:19 -060062 UCLASS_PCH, /* x86 platform controller hub */
Simon Glassb94dc892015-03-05 12:25:25 -070063 UCLASS_PCI, /* PCI bus */
64 UCLASS_PCI_GENERIC, /* Generic PCI bus device */
Jean-Jacques Hiblot48447782017-04-24 11:51:27 +020065 UCLASS_PHY, /* Physical Layer (PHY) device */
Masahiro Yamadaf8efa632015-08-27 12:44:29 +090066 UCLASS_PINCONFIG, /* Pin configuration node device */
Bin Meng1cc7ecd2016-06-22 02:29:47 -070067 UCLASS_PINCTRL, /* Pinctrl (pin muxing/configuration) device */
Simon Glass682ae862015-05-22 15:42:14 -060068 UCLASS_PMIC, /* PMIC I/O device */
Simon Glassb3f07562016-01-21 19:44:54 -070069 UCLASS_PWM, /* Pulse-width modulator */
Stephen Warren92c67fa2016-07-13 13:45:31 -060070 UCLASS_POWER_DOMAIN, /* (SoC) Power domains */
Simon Glassc9795172016-01-21 19:43:31 -070071 UCLASS_PWRSEQ, /* Power sequence device */
Bin Meng1cc7ecd2016-06-22 02:29:47 -070072 UCLASS_RAM, /* RAM controller */
Simon Glass682ae862015-05-22 15:42:14 -060073 UCLASS_REGULATOR, /* Regulator device */
Nishanth Menon08b9dc22015-09-17 15:42:39 -050074 UCLASS_REMOTEPROC, /* Remote Processor device */
Stephen Warren185ad872016-06-17 09:43:58 -060075 UCLASS_RESET, /* Reset controller device */
Simon Glass10d8904f2015-04-14 21:03:19 -060076 UCLASS_RTC, /* Real time clock device */
Michal Simekc886f352016-09-08 15:06:45 +020077 UCLASS_SCSI, /* SCSI device */
Simon Glass10d8904f2015-04-14 21:03:19 -060078 UCLASS_SERIAL, /* Serial UART */
Ramon Friedcf1e49f2018-07-02 02:57:55 +030079 UCLASS_SMEM, /* Shared memory interface */
Simon Glass10d8904f2015-04-14 21:03:19 -060080 UCLASS_SPI, /* SPI bus */
Mateusz Kulikowski946797f2016-03-31 23:12:27 +020081 UCLASS_SPMI, /* System Power Management Interface bus */
Simon Glass10d8904f2015-04-14 21:03:19 -060082 UCLASS_SPI_FLASH, /* SPI flash */
Simon Glass682ae862015-05-22 15:42:14 -060083 UCLASS_SPI_GENERIC, /* Generic SPI flash target */
Simon Glass6a84aaf2015-06-23 15:38:43 -060084 UCLASS_SYSCON, /* System configuration device */
Stephen Warren859f2562016-05-12 12:03:35 -060085 UCLASS_SYSRESET, /* System reset device */
Simon Glass10d8904f2015-04-14 21:03:19 -060086 UCLASS_THERMAL, /* Thermal sensor */
Thomas Choufb798b12015-10-09 13:46:34 +080087 UCLASS_TIMER, /* Timer device */
Simon Glass6c7a2322015-08-22 18:31:31 -060088 UCLASS_TPM, /* Trusted Platform Module TIS interface */
Simon Glass9b82eeb2015-03-25 12:21:59 -060089 UCLASS_USB, /* USB bus */
Simon Glassc79173e2015-03-25 12:22:31 -060090 UCLASS_USB_DEV_GENERIC, /* USB generic device */
Simon Glass10d8904f2015-04-14 21:03:19 -060091 UCLASS_USB_HUB, /* USB hub */
Simon Glass623d28f2016-01-18 19:52:15 -070092 UCLASS_VIDEO, /* Video or LCD device */
Simon Glass7cf17572015-07-02 18:16:08 -060093 UCLASS_VIDEO_BRIDGE, /* Video bridge, e.g. DisplayPort to LVDS */
Simon Glass84c7fb32016-01-18 19:52:17 -070094 UCLASS_VIDEO_CONSOLE, /* Text console driver for video device */
maxims@google.comdaea6d42017-04-17 12:00:21 -070095 UCLASS_WDT, /* Watchdot Timer driver */
Simon Glassdd6ab882014-02-26 15:59:18 -070096
Simon Glassdd6ab882014-02-26 15:59:18 -070097 UCLASS_COUNT,
98 UCLASS_INVALID = -1,
99};
100
101#endif