blob: a961648645eaa3d17ac3b071723a44525d9ea51f [file] [log] [blame]
Simon Glass6494d702014-02-26 15:59:18 -07001/*
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
10#ifndef _DM_UCLASS_ID_H
11#define _DM_UCLASS_ID_H
12
13/* TODO(sjg@chromium.org): this could be compile-time generated */
14enum uclass_id {
15 /* These are used internally by driver model */
16 UCLASS_ROOT = 0,
17 UCLASS_DEMO,
18 UCLASS_TEST,
19 UCLASS_TEST_FDT,
Simon Glass1ca7e202014-07-23 06:55:18 -060020 UCLASS_TEST_BUS,
Simon Glassc60e1f22014-10-13 23:41:53 -060021 UCLASS_SPI_EMUL, /* sandbox SPI device emulator */
Simon Glassc70c71d2014-12-10 08:55:49 -070022 UCLASS_I2C_EMUL, /* sandbox I2C device emulator */
Simon Glass36d0d3b2015-03-05 12:25:28 -070023 UCLASS_PCI_EMUL, /* sandbox PCI device emulator */
Simon Glass019808f2015-03-25 12:22:37 -060024 UCLASS_USB_EMUL, /* sandbox USB bus device emulator */
Simon Glass3d7cf412015-04-14 21:03:19 -060025 UCLASS_SIMPLE_BUS, /* bus with child devices */
Simon Glass6494d702014-02-26 15:59:18 -070026
Simon Glass3d7cf412015-04-14 21:03:19 -060027 /* U-Boot uclasses start here - in alphabetical order */
28 UCLASS_CPU, /* CPU, typically part of an SoC */
29 UCLASS_CROS_EC, /* Chrome OS EC */
Simon Glass51f2c992015-04-14 21:03:38 -060030 UCLASS_DISPLAY_PORT, /* Display port video */
Simon Glass3d7cf412015-04-14 21:03:19 -060031 UCLASS_ETH, /* Ethernet device */
Simon Glass0040b942014-07-23 06:55:17 -060032 UCLASS_GPIO, /* Bank of general-purpose I/O pins */
Simon Glass3d7cf412015-04-14 21:03:19 -060033 UCLASS_I2C, /* I2C bus */
34 UCLASS_I2C_EEPROM, /* I2C EEPROM device */
35 UCLASS_I2C_GENERIC, /* Generic I2C device */
Simon Glass59171122015-06-23 15:38:45 -060036 UCLASS_LED, /* Light-emitting diode (LED) */
Simon Glass3d7cf412015-04-14 21:03:19 -060037 UCLASS_LPC, /* x86 'low pin count' interface */
38 UCLASS_MASS_STORAGE, /* Mass storage device */
39 UCLASS_MOD_EXP, /* RSA Mod Exp device */
40 UCLASS_PCH, /* x86 platform controller hub */
41 UCLASS_PCI, /* PCI bus */
42 UCLASS_PCI_GENERIC, /* Generic PCI bus device */
Simon Glass4e389362015-05-22 15:42:14 -060043 UCLASS_PMIC, /* PMIC I/O device */
44 UCLASS_REGULATOR, /* Regulator device */
Simon Glass3d7cf412015-04-14 21:03:19 -060045 UCLASS_RTC, /* Real time clock device */
Simon Glass57d92752014-09-04 16:27:26 -060046 UCLASS_SERIAL, /* Serial UART */
Simon Glassd7af6a42014-10-13 23:41:52 -060047 UCLASS_SPI, /* SPI bus */
Simon Glass4c2dbef2014-10-13 23:42:06 -060048 UCLASS_SPI_FLASH, /* SPI flash */
Simon Glass4e389362015-05-22 15:42:14 -060049 UCLASS_SPI_GENERIC, /* Generic SPI flash target */
Simon Glass57251282015-06-23 15:38:43 -060050 UCLASS_SYSCON, /* System configuration device */
Ye.Lie3568d22014-11-20 21:14:13 +080051 UCLASS_THERMAL, /* Thermal sensor */
Simon Glassde312132015-03-25 12:21:59 -060052 UCLASS_USB, /* USB bus */
Simon Glass449230f2015-03-25 12:22:31 -060053 UCLASS_USB_DEV_GENERIC, /* USB generic device */
Simon Glass3d7cf412015-04-14 21:03:19 -060054 UCLASS_USB_HUB, /* USB hub */
Simon Glass6494d702014-02-26 15:59:18 -070055
Simon Glass6494d702014-02-26 15:59:18 -070056 UCLASS_COUNT,
57 UCLASS_INVALID = -1,
58};
59
60#endif