Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Google, Inc |
| 4 | * |
| 5 | * (C) Copyright 2012 |
| 6 | * Pavel Herrmann <morpheus.ibis@gmail.com> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 7 | */ |
| 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 */ |
| 13 | enum 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 Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 19 | UCLASS_TEST_BUS, |
Simon Glass | 9856157 | 2017-04-23 20:10:44 -0600 | [diff] [blame] | 20 | UCLASS_TEST_PROBE, |
Mario Six | e8d5291 | 2018-03-12 14:53:33 +0100 | [diff] [blame] | 21 | UCLASS_TEST_DUMMY, |
Simon Glass | c60e1f2 | 2014-10-13 23:41:53 -0600 | [diff] [blame] | 22 | UCLASS_SPI_EMUL, /* sandbox SPI device emulator */ |
Simon Glass | c70c71d | 2014-12-10 08:55:49 -0700 | [diff] [blame] | 23 | UCLASS_I2C_EMUL, /* sandbox I2C device emulator */ |
Simon Glass | 36d0d3b | 2015-03-05 12:25:28 -0700 | [diff] [blame] | 24 | UCLASS_PCI_EMUL, /* sandbox PCI device emulator */ |
Simon Glass | 019808f | 2015-03-25 12:22:37 -0600 | [diff] [blame] | 25 | UCLASS_USB_EMUL, /* sandbox USB bus device emulator */ |
Mario Six | 9a8bcab | 2018-08-09 14:51:18 +0200 | [diff] [blame] | 26 | UCLASS_AXI_EMUL, /* sandbox AXI bus device emulator */ |
Simon Glass | 3d7cf41 | 2015-04-14 21:03:19 -0600 | [diff] [blame] | 27 | UCLASS_SIMPLE_BUS, /* bus with child devices */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 28 | |
Simon Glass | 3d7cf41 | 2015-04-14 21:03:19 -0600 | [diff] [blame] | 29 | /* U-Boot uclasses start here - in alphabetical order */ |
Przemyslaw Marczak | 5decbf5 | 2015-10-27 13:08:00 +0100 | [diff] [blame] | 30 | UCLASS_ADC, /* Analog-to-digital converter */ |
Simon Glass | a219639 | 2016-05-01 11:35:52 -0600 | [diff] [blame] | 31 | UCLASS_AHCI, /* SATA disk controller */ |
Simon Glass | 09d71aa | 2016-02-29 15:25:55 -0700 | [diff] [blame] | 32 | UCLASS_BLK, /* Block device */ |
Mario Six | 5381c28 | 2018-07-31 11:44:11 +0200 | [diff] [blame] | 33 | UCLASS_BOARD, /* Device information from hardware */ |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 34 | UCLASS_CLK, /* Clock source, e.g. used by peripherals */ |
Simon Glass | 3d7cf41 | 2015-04-14 21:03:19 -0600 | [diff] [blame] | 35 | UCLASS_CPU, /* CPU, typically part of an SoC */ |
| 36 | UCLASS_CROS_EC, /* Chrome OS EC */ |
Simon Glass | 2dcf143 | 2016-01-21 19:45:00 -0700 | [diff] [blame] | 37 | UCLASS_DISPLAY, /* Display (e.g. DisplayPort, HDMI) */ |
Mugunthan V N | a0594ce | 2016-02-15 15:31:37 +0530 | [diff] [blame] | 38 | UCLASS_DMA, /* Direct Memory Access */ |
Heinrich Schuchardt | 05ef48a | 2018-01-21 19:29:30 +0100 | [diff] [blame] | 39 | UCLASS_EFI, /* EFI managed devices */ |
Simon Glass | 3d7cf41 | 2015-04-14 21:03:19 -0600 | [diff] [blame] | 40 | UCLASS_ETH, /* Ethernet device */ |
Tien Fong Chee | 6203000 | 2018-07-06 16:28:03 +0800 | [diff] [blame] | 41 | UCLASS_FS_FIRMWARE_LOADER, /* Generic loader */ |
Simon Glass | 0040b94 | 2014-07-23 06:55:17 -0600 | [diff] [blame] | 42 | UCLASS_GPIO, /* Bank of general-purpose I/O pins */ |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 43 | UCLASS_FIRMWARE, /* Firmware */ |
Simon Glass | 3d7cf41 | 2015-04-14 21:03:19 -0600 | [diff] [blame] | 44 | UCLASS_I2C, /* I2C bus */ |
| 45 | UCLASS_I2C_EEPROM, /* I2C EEPROM device */ |
| 46 | UCLASS_I2C_GENERIC, /* Generic I2C device */ |
Simon Glass | 3d1957f | 2015-08-03 08:19:21 -0600 | [diff] [blame] | 47 | UCLASS_I2C_MUX, /* I2C multiplexer */ |
Bin Meng | 68e6f22 | 2017-09-10 05:12:51 -0700 | [diff] [blame] | 48 | UCLASS_IDE, /* IDE device */ |
Mario Six | a63e54a | 2018-08-09 14:51:16 +0200 | [diff] [blame] | 49 | UCLASS_AXI, /* AXI bus */ |
Simon Glass | e76187a | 2016-01-19 21:32:25 -0700 | [diff] [blame] | 50 | UCLASS_IRQ, /* Interrupt controller */ |
Simon Glass | 34ab37e | 2015-09-08 11:15:11 -0600 | [diff] [blame] | 51 | UCLASS_KEYBOARD, /* Keyboard input device */ |
Simon Glass | 5917112 | 2015-06-23 15:38:45 -0600 | [diff] [blame] | 52 | UCLASS_LED, /* Light-emitting diode (LED) */ |
Simon Glass | 3d7cf41 | 2015-04-14 21:03:19 -0600 | [diff] [blame] | 53 | UCLASS_LPC, /* x86 'low pin count' interface */ |
Stephen Warren | 6238935 | 2016-05-13 15:50:29 -0600 | [diff] [blame] | 54 | UCLASS_MAILBOX, /* Mailbox controller */ |
Simon Glass | 3d7cf41 | 2015-04-14 21:03:19 -0600 | [diff] [blame] | 55 | UCLASS_MASS_STORAGE, /* Mass storage device */ |
Thomas Chou | 4395e06 | 2015-10-07 20:20:51 +0800 | [diff] [blame] | 56 | UCLASS_MISC, /* Miscellaneous device */ |
Simon Glass | e7ecf7c | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 57 | UCLASS_MMC, /* SD / MMC card or chip */ |
Simon Glass | 3d7cf41 | 2015-04-14 21:03:19 -0600 | [diff] [blame] | 58 | UCLASS_MOD_EXP, /* RSA Mod Exp device */ |
Thomas Chou | d858799 | 2015-11-07 14:20:31 +0800 | [diff] [blame] | 59 | UCLASS_MTD, /* Memory Technology Device (MTD) device */ |
Simon Glass | 5544757 | 2016-01-17 16:11:14 -0700 | [diff] [blame] | 60 | UCLASS_NORTHBRIDGE, /* Intel Northbridge / SDRAM controller */ |
Zhikang Zhang | ffab694 | 2017-08-03 02:30:56 -0700 | [diff] [blame] | 61 | UCLASS_NVME, /* NVM Express device */ |
Simon Glass | f563dc1 | 2016-01-21 19:44:58 -0700 | [diff] [blame] | 62 | UCLASS_PANEL, /* Display panel, such as an LCD */ |
Simon Glass | 363bf77 | 2016-01-21 19:44:56 -0700 | [diff] [blame] | 63 | UCLASS_PANEL_BACKLIGHT, /* Backlight controller for panel */ |
Simon Glass | 3d7cf41 | 2015-04-14 21:03:19 -0600 | [diff] [blame] | 64 | UCLASS_PCH, /* x86 platform controller hub */ |
| 65 | UCLASS_PCI, /* PCI bus */ |
| 66 | UCLASS_PCI_GENERIC, /* Generic PCI bus device */ |
Jean-Jacques Hiblot | 72e5016 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 67 | UCLASS_PHY, /* Physical Layer (PHY) device */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 68 | UCLASS_PINCONFIG, /* Pin configuration node device */ |
Bin Meng | 6f0e7a3 | 2016-06-22 02:29:47 -0700 | [diff] [blame] | 69 | UCLASS_PINCTRL, /* Pinctrl (pin muxing/configuration) device */ |
Simon Glass | 4e38936 | 2015-05-22 15:42:14 -0600 | [diff] [blame] | 70 | UCLASS_PMIC, /* PMIC I/O device */ |
Simon Glass | fc760cb | 2016-01-21 19:44:54 -0700 | [diff] [blame] | 71 | UCLASS_PWM, /* Pulse-width modulator */ |
Stephen Warren | 61f5ddc | 2016-07-13 13:45:31 -0600 | [diff] [blame] | 72 | UCLASS_POWER_DOMAIN, /* (SoC) Power domains */ |
Simon Glass | 5fd6bad | 2016-01-21 19:43:31 -0700 | [diff] [blame] | 73 | UCLASS_PWRSEQ, /* Power sequence device */ |
Bin Meng | 6f0e7a3 | 2016-06-22 02:29:47 -0700 | [diff] [blame] | 74 | UCLASS_RAM, /* RAM controller */ |
Simon Glass | 4e38936 | 2015-05-22 15:42:14 -0600 | [diff] [blame] | 75 | UCLASS_REGULATOR, /* Regulator device */ |
Nishanth Menon | ddf56bc | 2015-09-17 15:42:39 -0500 | [diff] [blame] | 76 | UCLASS_REMOTEPROC, /* Remote Processor device */ |
Stephen Warren | 89c1e2d | 2016-06-17 09:43:58 -0600 | [diff] [blame] | 77 | UCLASS_RESET, /* Reset controller device */ |
Simon Glass | 3d7cf41 | 2015-04-14 21:03:19 -0600 | [diff] [blame] | 78 | UCLASS_RTC, /* Real time clock device */ |
Michal Simek | e8a016b | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 79 | UCLASS_SCSI, /* SCSI device */ |
Simon Glass | 57d9275 | 2014-09-04 16:27:26 -0600 | [diff] [blame] | 80 | UCLASS_SERIAL, /* Serial UART */ |
Ramon Fried | 7b384ec | 2018-07-02 02:57:55 +0300 | [diff] [blame] | 81 | UCLASS_SMEM, /* Shared memory interface */ |
Simon Glass | d7af6a4 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 82 | UCLASS_SPI, /* SPI bus */ |
Mateusz Kulikowski | 04868b4 | 2016-03-31 23:12:27 +0200 | [diff] [blame] | 83 | UCLASS_SPMI, /* System Power Management Interface bus */ |
Simon Glass | 4c2dbef | 2014-10-13 23:42:06 -0600 | [diff] [blame] | 84 | UCLASS_SPI_FLASH, /* SPI flash */ |
Simon Glass | 4e38936 | 2015-05-22 15:42:14 -0600 | [diff] [blame] | 85 | UCLASS_SPI_GENERIC, /* Generic SPI flash target */ |
Simon Glass | 5725128 | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 86 | UCLASS_SYSCON, /* System configuration device */ |
Stephen Warren | 1163625 | 2016-05-12 12:03:35 -0600 | [diff] [blame] | 87 | UCLASS_SYSRESET, /* System reset device */ |
Jens Wiklander | 9ff4a31 | 2018-09-25 16:40:09 +0200 | [diff] [blame] | 88 | UCLASS_TEE, /* Trusted Execution Environment device */ |
Ye.Li | e3568d2 | 2014-11-20 21:14:13 +0800 | [diff] [blame] | 89 | UCLASS_THERMAL, /* Thermal sensor */ |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 90 | UCLASS_TIMER, /* Timer device */ |
Simon Glass | f255d31 | 2015-08-22 18:31:31 -0600 | [diff] [blame] | 91 | UCLASS_TPM, /* Trusted Platform Module TIS interface */ |
Simon Glass | de31213 | 2015-03-25 12:21:59 -0600 | [diff] [blame] | 92 | UCLASS_USB, /* USB bus */ |
Simon Glass | 449230f | 2015-03-25 12:22:31 -0600 | [diff] [blame] | 93 | UCLASS_USB_DEV_GENERIC, /* USB generic device */ |
Simon Glass | 3d7cf41 | 2015-04-14 21:03:19 -0600 | [diff] [blame] | 94 | UCLASS_USB_HUB, /* USB hub */ |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 95 | UCLASS_VIDEO, /* Video or LCD device */ |
Simon Glass | 801ab9e | 2015-07-02 18:16:08 -0600 | [diff] [blame] | 96 | UCLASS_VIDEO_BRIDGE, /* Video bridge, e.g. DisplayPort to LVDS */ |
Simon Glass | 8351076 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 97 | UCLASS_VIDEO_CONSOLE, /* Text console driver for video device */ |
Mario Six | 39a336f | 2018-09-27 09:19:29 +0200 | [diff] [blame] | 98 | UCLASS_VIDEO_OSD, /* On-screen display */ |
Bin Meng | 8fb49b4 | 2018-10-15 02:21:00 -0700 | [diff] [blame] | 99 | UCLASS_VIRTIO, /* VirtIO transport device */ |
Maxime Ripard | d3e19cf | 2018-09-18 10:35:24 +0300 | [diff] [blame] | 100 | UCLASS_W1, /* Dallas 1-Wire bus */ |
Maxime Ripard | c924ee2 | 2018-09-18 10:35:27 +0300 | [diff] [blame] | 101 | UCLASS_W1_EEPROM, /* one-wire EEPROMs */ |
maxims@google.com | 0753bc2 | 2017-04-17 12:00:21 -0700 | [diff] [blame] | 102 | UCLASS_WDT, /* Watchdot Timer driver */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 103 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 104 | UCLASS_COUNT, |
| 105 | UCLASS_INVALID = -1, |
| 106 | }; |
| 107 | |
| 108 | #endif |