2014-02-26 22:59:18 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Google, Inc
|
|
|
|
*
|
|
|
|
* (C) Copyright 2012
|
|
|
|
* Pavel Herrmann <morpheus.ibis@gmail.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DM_UCLASS_ID_H
|
|
|
|
#define _DM_UCLASS_ID_H
|
|
|
|
|
|
|
|
/* TODO(sjg@chromium.org): this could be compile-time generated */
|
|
|
|
enum uclass_id {
|
|
|
|
/* These are used internally by driver model */
|
|
|
|
UCLASS_ROOT = 0,
|
|
|
|
UCLASS_DEMO,
|
|
|
|
UCLASS_TEST,
|
|
|
|
UCLASS_TEST_FDT,
|
2014-07-23 12:55:18 +00:00
|
|
|
UCLASS_TEST_BUS,
|
2014-10-14 05:41:53 +00:00
|
|
|
UCLASS_SPI_EMUL, /* sandbox SPI device emulator */
|
2014-12-10 15:55:49 +00:00
|
|
|
UCLASS_I2C_EMUL, /* sandbox I2C device emulator */
|
2015-03-05 19:25:28 +00:00
|
|
|
UCLASS_PCI_EMUL, /* sandbox PCI device emulator */
|
2015-03-25 18:22:37 +00:00
|
|
|
UCLASS_USB_EMUL, /* sandbox USB bus device emulator */
|
2015-04-15 03:03:19 +00:00
|
|
|
UCLASS_SIMPLE_BUS, /* bus with child devices */
|
2014-02-26 22:59:18 +00:00
|
|
|
|
2015-04-15 03:03:19 +00:00
|
|
|
/* U-Boot uclasses start here - in alphabetical order */
|
2015-06-23 21:39:15 +00:00
|
|
|
UCLASS_CLK, /* Clock source, e.g. used by peripherals */
|
2015-04-15 03:03:19 +00:00
|
|
|
UCLASS_CPU, /* CPU, typically part of an SoC */
|
|
|
|
UCLASS_CROS_EC, /* Chrome OS EC */
|
2015-04-15 03:03:38 +00:00
|
|
|
UCLASS_DISPLAY_PORT, /* Display port video */
|
2015-06-23 21:39:04 +00:00
|
|
|
UCLASS_RAM, /* RAM controller */
|
2015-04-15 03:03:19 +00:00
|
|
|
UCLASS_ETH, /* Ethernet device */
|
2014-07-23 12:55:17 +00:00
|
|
|
UCLASS_GPIO, /* Bank of general-purpose I/O pins */
|
2014-12-10 15:55:47 +00:00
|
|
|
UCLASS_I2C, /* I2C bus */
|
2014-12-10 15:55:54 +00:00
|
|
|
UCLASS_I2C_EEPROM, /* I2C EEPROM device */
|
2015-04-15 03:03:19 +00:00
|
|
|
UCLASS_I2C_GENERIC, /* Generic I2C device */
|
2015-08-03 14:19:21 +00:00
|
|
|
UCLASS_I2C_MUX, /* I2C multiplexer */
|
2015-06-23 21:38:45 +00:00
|
|
|
UCLASS_LED, /* Light-emitting diode (LED) */
|
2015-04-15 03:03:19 +00:00
|
|
|
UCLASS_LPC, /* x86 'low pin count' interface */
|
|
|
|
UCLASS_MASS_STORAGE, /* Mass storage device */
|
2015-06-23 21:38:48 +00:00
|
|
|
UCLASS_MMC, /* SD / MMC card or chip */
|
2015-01-23 10:31:52 +00:00
|
|
|
UCLASS_MOD_EXP, /* RSA Mod Exp device */
|
2015-04-15 03:03:19 +00:00
|
|
|
UCLASS_PCH, /* x86 platform controller hub */
|
2015-03-05 19:25:25 +00:00
|
|
|
UCLASS_PCI, /* PCI bus */
|
|
|
|
UCLASS_PCI_GENERIC, /* Generic PCI bus device */
|
2015-05-22 21:42:14 +00:00
|
|
|
UCLASS_PMIC, /* PMIC I/O device */
|
|
|
|
UCLASS_REGULATOR, /* Regulator device */
|
2015-06-23 21:39:13 +00:00
|
|
|
UCLASS_RESET, /* Reset device */
|
2015-04-15 03:03:19 +00:00
|
|
|
UCLASS_RTC, /* Real time clock device */
|
|
|
|
UCLASS_SERIAL, /* Serial UART */
|
|
|
|
UCLASS_SPI, /* SPI bus */
|
|
|
|
UCLASS_SPI_FLASH, /* SPI flash */
|
2015-05-22 21:42:14 +00:00
|
|
|
UCLASS_SPI_GENERIC, /* Generic SPI flash target */
|
2015-06-23 21:38:43 +00:00
|
|
|
UCLASS_SYSCON, /* System configuration device */
|
2015-04-15 03:03:19 +00:00
|
|
|
UCLASS_THERMAL, /* Thermal sensor */
|
2015-03-25 18:21:59 +00:00
|
|
|
UCLASS_USB, /* USB bus */
|
2015-03-25 18:22:31 +00:00
|
|
|
UCLASS_USB_DEV_GENERIC, /* USB generic device */
|
2015-04-15 03:03:19 +00:00
|
|
|
UCLASS_USB_HUB, /* USB hub */
|
2014-02-26 22:59:18 +00:00
|
|
|
|
|
|
|
UCLASS_COUNT,
|
|
|
|
UCLASS_INVALID = -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|