uclass-id.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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_CPU, /* CPU, typically part of an SoC */
  26. UCLASS_CROS_EC, /* Chrome OS EC */
  27. UCLASS_DISPLAY_PORT, /* Display port video */
  28. UCLASS_ETH, /* Ethernet device */
  29. UCLASS_GPIO, /* Bank of general-purpose I/O pins */
  30. UCLASS_I2C, /* I2C bus */
  31. UCLASS_I2C_EEPROM, /* I2C EEPROM device */
  32. UCLASS_I2C_GENERIC, /* Generic I2C device */
  33. UCLASS_LPC, /* x86 'low pin count' interface */
  34. UCLASS_MASS_STORAGE, /* Mass storage device */
  35. UCLASS_MOD_EXP, /* RSA Mod Exp device */
  36. UCLASS_PCH, /* x86 platform controller hub */
  37. UCLASS_PCI, /* PCI bus */
  38. UCLASS_PCI_GENERIC, /* Generic PCI bus device */
  39. UCLASS_RTC, /* Real time clock device */
  40. UCLASS_SERIAL, /* Serial UART */
  41. UCLASS_SPI, /* SPI bus */
  42. UCLASS_SPI_GENERIC, /* Generic SPI flash target */
  43. UCLASS_SPI_FLASH, /* SPI flash */
  44. UCLASS_THERMAL, /* Thermal sensor */
  45. UCLASS_USB, /* USB bus */
  46. UCLASS_USB_DEV_GENERIC, /* USB generic device */
  47. UCLASS_USB_HUB, /* USB hub */
  48. UCLASS_COUNT,
  49. UCLASS_INVALID = -1,
  50. };
  51. #endif