blob: f9300a64ceea2534c85adf2ce17a97d7981a7545 [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 Glass4b0ecc62018-11-18 08:14:33 -070024 UCLASS_I2C_EMUL_PARENT, /* parent for I2C device emulators */
Simon Glassd9e90bb2015-03-05 12:25:28 -070025 UCLASS_PCI_EMUL, /* sandbox PCI device emulator */
Simon Glass59d66d22015-03-25 12:22:37 -060026 UCLASS_USB_EMUL, /* sandbox USB bus device emulator */
Mario Sixf95104d2018-08-09 14:51:18 +020027 UCLASS_AXI_EMUL, /* sandbox AXI bus device emulator */
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 Glassed96cde2018-12-10 10:37:33 -070032 UCLASS_AUDIO_CODEC, /* Audio codec with control and data path */
Philipp Tomsich872f4542018-11-25 19:38:54 +010033 UCLASS_AXI, /* AXI bus */
Simon Glasscceee552016-02-29 15:25:55 -070034 UCLASS_BLK, /* Block device */
Mario Six2161e552018-07-31 11:44:11 +020035 UCLASS_BOARD, /* Device information from hardware */
Philipp Tomsichce860312018-11-27 23:00:18 +010036 UCLASS_BOOTCOUNT, /* Bootcount backing store */
Dinh Nguyend94e18e2019-04-23 16:55:03 -050037 UCLASS_CACHE, /* Cache controller */
Simon Glass36ad2342015-06-23 15:39:15 -060038 UCLASS_CLK, /* Clock source, e.g. used by peripherals */
Simon Glass10d8904f2015-04-14 21:03:19 -060039 UCLASS_CPU, /* CPU, typically part of an SoC */
40 UCLASS_CROS_EC, /* Chrome OS EC */
Simon Glass7d3d7762016-01-21 19:45:00 -070041 UCLASS_DISPLAY, /* Display (e.g. DisplayPort, HDMI) */
Mugunthan V N8c3c9182016-02-15 15:31:37 +053042 UCLASS_DMA, /* Direct Memory Access */
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010043 UCLASS_EFI, /* EFI managed devices */
Simon Glass10d8904f2015-04-14 21:03:19 -060044 UCLASS_ETH, /* Ethernet device */
Philipp Tomsich872f4542018-11-25 19:38:54 +010045 UCLASS_FIRMWARE, /* Firmware */
Tien Fong Chee5ca878b2018-07-06 16:28:03 +080046 UCLASS_FS_FIRMWARE_LOADER, /* Generic loader */
Simon Glasscebcebb2014-07-23 06:55:17 -060047 UCLASS_GPIO, /* Bank of general-purpose I/O pins */
Benjamin Gaignarda550b542018-11-27 13:49:50 +010048 UCLASS_HWSPINLOCK, /* Hardware semaphores */
Simon Glassc7a58902014-12-10 08:55:47 -070049 UCLASS_I2C, /* I2C bus */
Simon Glass6ca4ba02014-12-10 08:55:54 -070050 UCLASS_I2C_EEPROM, /* I2C EEPROM device */
Simon Glass10d8904f2015-04-14 21:03:19 -060051 UCLASS_I2C_GENERIC, /* Generic I2C device */
Simon Glass2a80c402015-08-03 08:19:21 -060052 UCLASS_I2C_MUX, /* I2C multiplexer */
Simon Glassc953aaf2018-12-10 10:37:34 -070053 UCLASS_I2S, /* I2S bus */
Bin Mengb650afa2017-09-10 05:12:51 -070054 UCLASS_IDE, /* IDE device */
Simon Glass18a8e092016-01-19 21:32:25 -070055 UCLASS_IRQ, /* Interrupt controller */
Simon Glass02f0c282015-09-08 11:15:11 -060056 UCLASS_KEYBOARD, /* Keyboard input device */
Simon Glasscce3aed2015-06-23 15:38:45 -060057 UCLASS_LED, /* Light-emitting diode (LED) */
Simon Glass10d8904f2015-04-14 21:03:19 -060058 UCLASS_LPC, /* x86 'low pin count' interface */
Stephen Warrend0107832016-05-13 15:50:29 -060059 UCLASS_MAILBOX, /* Mailbox controller */
Simon Glass10d8904f2015-04-14 21:03:19 -060060 UCLASS_MASS_STORAGE, /* Mass storage device */
Alex Marginean1a5b0982019-06-03 19:10:30 +030061 UCLASS_MDIO, /* MDIO bus */
Thomas Choub1ed6862015-10-07 20:20:51 +080062 UCLASS_MISC, /* Miscellaneous device */
Simon Glass1e8eb1b2015-06-23 15:38:48 -060063 UCLASS_MMC, /* SD / MMC card or chip */
Ruchika Gupta98ebb122015-01-23 16:01:52 +053064 UCLASS_MOD_EXP, /* RSA Mod Exp device */
Thomas Choue51b65e2015-11-07 14:20:31 +080065 UCLASS_MTD, /* Memory Technology Device (MTD) device */
Jean-Jacques Hiblotdb97c7f2019-07-05 09:33:57 +020066 UCLASS_NOP, /* No-op devices */
Simon Glass29ce97e2016-01-17 16:11:14 -070067 UCLASS_NORTHBRIDGE, /* Intel Northbridge / SDRAM controller */
Zhikang Zhang182fccd2017-08-03 02:30:56 -070068 UCLASS_NVME, /* NVM Express device */
Simon Glass14d1c8e2016-01-21 19:44:58 -070069 UCLASS_PANEL, /* Display panel, such as an LCD */
Simon Glass8f790482016-01-21 19:44:56 -070070 UCLASS_PANEL_BACKLIGHT, /* Backlight controller for panel */
Simon Glass10d8904f2015-04-14 21:03:19 -060071 UCLASS_PCH, /* x86 platform controller hub */
Simon Glassb94dc892015-03-05 12:25:25 -070072 UCLASS_PCI, /* PCI bus */
Ramon Fried663686d2019-04-27 11:15:21 +030073 UCLASS_PCI_EP, /* PCI endpoint device */
Simon Glassb94dc892015-03-05 12:25:25 -070074 UCLASS_PCI_GENERIC, /* Generic PCI bus device */
Jean-Jacques Hiblot48447782017-04-24 11:51:27 +020075 UCLASS_PHY, /* Physical Layer (PHY) device */
Masahiro Yamadaf8efa632015-08-27 12:44:29 +090076 UCLASS_PINCONFIG, /* Pin configuration node device */
Bin Meng1cc7ecd2016-06-22 02:29:47 -070077 UCLASS_PINCTRL, /* Pinctrl (pin muxing/configuration) device */
Simon Glass682ae862015-05-22 15:42:14 -060078 UCLASS_PMIC, /* PMIC I/O device */
Stephen Warren92c67fa2016-07-13 13:45:31 -060079 UCLASS_POWER_DOMAIN, /* (SoC) Power domains */
Philipp Tomsich872f4542018-11-25 19:38:54 +010080 UCLASS_PWM, /* Pulse-width modulator */
Simon Glassc9795172016-01-21 19:43:31 -070081 UCLASS_PWRSEQ, /* Power sequence device */
Bin Meng1cc7ecd2016-06-22 02:29:47 -070082 UCLASS_RAM, /* RAM controller */
Simon Glass682ae862015-05-22 15:42:14 -060083 UCLASS_REGULATOR, /* Regulator device */
Nishanth Menon08b9dc22015-09-17 15:42:39 -050084 UCLASS_REMOTEPROC, /* Remote Processor device */
Stephen Warren185ad872016-06-17 09:43:58 -060085 UCLASS_RESET, /* Reset controller device */
Simon Glass10d8904f2015-04-14 21:03:19 -060086 UCLASS_RTC, /* Real time clock device */
Michal Simekc886f352016-09-08 15:06:45 +020087 UCLASS_SCSI, /* SCSI device */
Simon Glass10d8904f2015-04-14 21:03:19 -060088 UCLASS_SERIAL, /* Serial UART */
Simon Glass78df8b42018-11-18 08:14:32 -070089 UCLASS_SIMPLE_BUS, /* Bus with child devices */
Ramon Friedcf1e49f2018-07-02 02:57:55 +030090 UCLASS_SMEM, /* Shared memory interface */
Simon Glass76072ac2018-12-10 10:37:36 -070091 UCLASS_SOUND, /* Playing simple sounds */
Simon Glass10d8904f2015-04-14 21:03:19 -060092 UCLASS_SPI, /* SPI bus */
Simon Glass10d8904f2015-04-14 21:03:19 -060093 UCLASS_SPI_FLASH, /* SPI flash */
Simon Glass682ae862015-05-22 15:42:14 -060094 UCLASS_SPI_GENERIC, /* Generic SPI flash target */
Philipp Tomsich872f4542018-11-25 19:38:54 +010095 UCLASS_SPMI, /* System Power Management Interface bus */
Simon Glass6a84aaf2015-06-23 15:38:43 -060096 UCLASS_SYSCON, /* System configuration device */
Stephen Warren859f2562016-05-12 12:03:35 -060097 UCLASS_SYSRESET, /* System reset device */
Jens Wiklander14290442018-09-25 16:40:09 +020098 UCLASS_TEE, /* Trusted Execution Environment device */
Simon Glass10d8904f2015-04-14 21:03:19 -060099 UCLASS_THERMAL, /* Thermal sensor */
Thomas Choufb798b12015-10-09 13:46:34 +0800100 UCLASS_TIMER, /* Timer device */
Simon Glass6c7a2322015-08-22 18:31:31 -0600101 UCLASS_TPM, /* Trusted Platform Module TIS interface */
Simon Glass9b82eeb2015-03-25 12:21:59 -0600102 UCLASS_USB, /* USB bus */
Simon Glassc79173e2015-03-25 12:22:31 -0600103 UCLASS_USB_DEV_GENERIC, /* USB generic device */
Simon Glass10d8904f2015-04-14 21:03:19 -0600104 UCLASS_USB_HUB, /* USB hub */
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +0100105 UCLASS_USB_GADGET_GENERIC, /* USB generic device */
Simon Glass623d28f2016-01-18 19:52:15 -0700106 UCLASS_VIDEO, /* Video or LCD device */
Simon Glass7cf17572015-07-02 18:16:08 -0600107 UCLASS_VIDEO_BRIDGE, /* Video bridge, e.g. DisplayPort to LVDS */
Simon Glass84c7fb32016-01-18 19:52:17 -0700108 UCLASS_VIDEO_CONSOLE, /* Text console driver for video device */
Mario Six1b773202018-09-27 09:19:29 +0200109 UCLASS_VIDEO_OSD, /* On-screen display */
Bin Mengdb7ca2e2018-10-15 02:21:00 -0700110 UCLASS_VIRTIO, /* VirtIO transport device */
Maxime Ripardbdbdca32018-09-18 10:35:24 +0300111 UCLASS_W1, /* Dallas 1-Wire bus */
Maxime Ripardf674fc02018-09-18 10:35:27 +0300112 UCLASS_W1_EEPROM, /* one-wire EEPROMs */
Chris Packhamf5c98112019-02-18 08:48:04 +1300113 UCLASS_WDT, /* Watchdog Timer driver */
Simon Glassdd6ab882014-02-26 15:59:18 -0700114
Simon Glassdd6ab882014-02-26 15:59:18 -0700115 UCLASS_COUNT,
116 UCLASS_INVALID = -1,
117};
118
119#endif