uclass-id.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * Copyright (c) 2013 Google, Inc
  3. *
  4. * (C) Copyright 2012
  5. * Pavel Herrmann <morpheus.ibis@gmail.com>
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #ifndef _DM_UCLASS_ID_H
  10. #define _DM_UCLASS_ID_H
  11. /* TODO(sjg@chromium.org): this could be compile-time generated */
  12. enum uclass_id {
  13. /* These are used internally by driver model */
  14. UCLASS_ROOT = 0,
  15. UCLASS_DEMO,
  16. UCLASS_TEST,
  17. UCLASS_TEST_FDT,
  18. UCLASS_TEST_BUS,
  19. UCLASS_SPI_EMUL, /* sandbox SPI device emulator */
  20. UCLASS_I2C_EMUL, /* sandbox I2C device emulator */
  21. UCLASS_PCI_EMUL, /* sandbox PCI device emulator */
  22. UCLASS_USB_EMUL, /* sandbox USB bus device emulator */
  23. UCLASS_SIMPLE_BUS, /* bus with child devices */
  24. /* U-Boot uclasses start here - in alphabetical order */
  25. UCLASS_ADC, /* Analog-to-digital converter */
  26. UCLASS_CLK, /* Clock source, e.g. used by peripherals */
  27. UCLASS_CPU, /* CPU, typically part of an SoC */
  28. UCLASS_CROS_EC, /* Chrome OS EC */
  29. UCLASS_DISPLAY_PORT, /* Display port video */
  30. UCLASS_RAM, /* RAM controller */
  31. UCLASS_ETH, /* Ethernet device */
  32. UCLASS_GPIO, /* Bank of general-purpose I/O pins */
  33. UCLASS_I2C, /* I2C bus */
  34. UCLASS_I2C_EEPROM, /* I2C EEPROM device */
  35. UCLASS_I2C_GENERIC, /* Generic I2C device */
  36. UCLASS_I2C_MUX, /* I2C multiplexer */
  37. UCLASS_KEYBOARD, /* Keyboard input device */
  38. UCLASS_LED, /* Light-emitting diode (LED) */
  39. UCLASS_LPC, /* x86 'low pin count' interface */
  40. UCLASS_MASS_STORAGE, /* Mass storage device */
  41. UCLASS_MISC, /* Miscellaneous device */
  42. UCLASS_MMC, /* SD / MMC card or chip */
  43. UCLASS_MOD_EXP, /* RSA Mod Exp device */
  44. UCLASS_MTD, /* Memory Technology Device (MTD) device */
  45. UCLASS_PCH, /* x86 platform controller hub */
  46. UCLASS_PCI, /* PCI bus */
  47. UCLASS_PCI_GENERIC, /* Generic PCI bus device */
  48. UCLASS_PINCTRL, /* Pinctrl (pin muxing/configuration) device */
  49. UCLASS_PINCONFIG, /* Pin configuration node device */
  50. UCLASS_PMIC, /* PMIC I/O device */
  51. UCLASS_PWRSEQ, /* Power sequence device */
  52. UCLASS_REGULATOR, /* Regulator device */
  53. UCLASS_RESET, /* Reset device */
  54. UCLASS_REMOTEPROC, /* Remote Processor device */
  55. UCLASS_RTC, /* Real time clock device */
  56. UCLASS_SERIAL, /* Serial UART */
  57. UCLASS_SPI, /* SPI bus */
  58. UCLASS_SPI_FLASH, /* SPI flash */
  59. UCLASS_SPI_GENERIC, /* Generic SPI flash target */
  60. UCLASS_SYSCON, /* System configuration device */
  61. UCLASS_THERMAL, /* Thermal sensor */
  62. UCLASS_TIMER, /* Timer device */
  63. UCLASS_TPM, /* Trusted Platform Module TIS interface */
  64. UCLASS_USB, /* USB bus */
  65. UCLASS_USB_DEV_GENERIC, /* USB generic device */
  66. UCLASS_USB_HUB, /* USB hub */
  67. UCLASS_VIDEO, /* Video or LCD device */
  68. UCLASS_VIDEO_BRIDGE, /* Video bridge, e.g. DisplayPort to LVDS */
  69. UCLASS_VIDEO_CONSOLE, /* Text console driver for video device */
  70. UCLASS_COUNT,
  71. UCLASS_INVALID = -1,
  72. };
  73. #endif