2014-02-26 15:59:18 -07: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 06:55:18 -06:00
|
|
|
UCLASS_TEST_BUS,
|
2014-10-13 23:41:53 -06:00
|
|
|
UCLASS_SPI_EMUL, /* sandbox SPI device emulator */
|
2014-12-10 08:55:49 -07:00
|
|
|
UCLASS_I2C_EMUL, /* sandbox I2C device emulator */
|
2015-03-05 12:25:28 -07:00
|
|
|
UCLASS_PCI_EMUL, /* sandbox PCI device emulator */
|
2015-03-25 12:22:37 -06:00
|
|
|
UCLASS_USB_EMUL, /* sandbox USB bus device emulator */
|
2015-04-14 21:03:19 -06:00
|
|
|
UCLASS_SIMPLE_BUS, /* bus with child devices */
|
2014-02-26 15:59:18 -07:00
|
|
|
|
2015-04-14 21:03:19 -06:00
|
|
|
/* U-Boot uclasses start here - in alphabetical order */
|
2015-06-23 15:39:15 -06:00
|
|
|
UCLASS_CLK, /* Clock source, e.g. used by peripherals */
|
2015-04-14 21:03:19 -06:00
|
|
|
UCLASS_CPU, /* CPU, typically part of an SoC */
|
|
|
|
UCLASS_CROS_EC, /* Chrome OS EC */
|
2015-04-14 21:03:38 -06:00
|
|
|
UCLASS_DISPLAY_PORT, /* Display port video */
|
2015-06-23 15:39:04 -06:00
|
|
|
UCLASS_RAM, /* RAM controller */
|
2015-04-14 21:03:19 -06:00
|
|
|
UCLASS_ETH, /* Ethernet device */
|
2014-07-23 06:55:17 -06:00
|
|
|
UCLASS_GPIO, /* Bank of general-purpose I/O pins */
|
2014-12-10 08:55:47 -07:00
|
|
|
UCLASS_I2C, /* I2C bus */
|
2014-12-10 08:55:54 -07:00
|
|
|
UCLASS_I2C_EEPROM, /* I2C EEPROM device */
|
2015-04-14 21:03:19 -06:00
|
|
|
UCLASS_I2C_GENERIC, /* Generic I2C device */
|
2015-08-03 08:19:21 -06:00
|
|
|
UCLASS_I2C_MUX, /* I2C multiplexer */
|
2015-06-23 15:38:45 -06:00
|
|
|
UCLASS_LED, /* Light-emitting diode (LED) */
|
2015-04-14 21:03:19 -06:00
|
|
|
UCLASS_LPC, /* x86 'low pin count' interface */
|
|
|
|
UCLASS_MASS_STORAGE, /* Mass storage device */
|
2015-06-23 15:38:48 -06:00
|
|
|
UCLASS_MMC, /* SD / MMC card or chip */
|
2015-01-23 16:01:52 +05:30
|
|
|
UCLASS_MOD_EXP, /* RSA Mod Exp device */
|
2015-04-14 21:03:19 -06:00
|
|
|
UCLASS_PCH, /* x86 platform controller hub */
|
2015-03-05 12:25:25 -07:00
|
|
|
UCLASS_PCI, /* PCI bus */
|
|
|
|
UCLASS_PCI_GENERIC, /* Generic PCI bus device */
|
2015-05-22 15:42:14 -06:00
|
|
|
UCLASS_PMIC, /* PMIC I/O device */
|
|
|
|
UCLASS_REGULATOR, /* Regulator device */
|
2015-06-23 15:39:13 -06:00
|
|
|
UCLASS_RESET, /* Reset device */
|
2015-04-14 21:03:19 -06:00
|
|
|
UCLASS_RTC, /* Real time clock device */
|
|
|
|
UCLASS_SERIAL, /* Serial UART */
|
|
|
|
UCLASS_SPI, /* SPI bus */
|
|
|
|
UCLASS_SPI_FLASH, /* SPI flash */
|
2015-05-22 15:42:14 -06:00
|
|
|
UCLASS_SPI_GENERIC, /* Generic SPI flash target */
|
2015-06-23 15:38:43 -06:00
|
|
|
UCLASS_SYSCON, /* System configuration device */
|
2015-04-14 21:03:19 -06:00
|
|
|
UCLASS_THERMAL, /* Thermal sensor */
|
2015-03-25 12:21:59 -06:00
|
|
|
UCLASS_USB, /* USB bus */
|
2015-03-25 12:22:31 -06:00
|
|
|
UCLASS_USB_DEV_GENERIC, /* USB generic device */
|
2015-04-14 21:03:19 -06:00
|
|
|
UCLASS_USB_HUB, /* USB hub */
|
2015-07-02 18:16:08 -06:00
|
|
|
UCLASS_VIDEO_BRIDGE, /* Video bridge, e.g. DisplayPort to LVDS */
|
2014-02-26 15:59:18 -07:00
|
|
|
|
|
|
|
UCLASS_COUNT,
|
|
|
|
UCLASS_INVALID = -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|