]>
Commit | Line | Data |
---|---|---|
6494d708 SG |
1 | /* |
2 | * Copyright (c) 2013 Google, Inc | |
3 | * | |
4 | * (C) Copyright 2012 | |
5 | * Pavel Herrmann <[email protected]> | |
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([email protected]): this could be compile-time generated */ | |
14 | enum uclass_id { | |
15 | /* These are used internally by driver model */ | |
16 | UCLASS_ROOT = 0, | |
17 | UCLASS_DEMO, | |
18 | UCLASS_TEST, | |
19 | UCLASS_TEST_FDT, | |
1ca7e206 | 20 | UCLASS_TEST_BUS, |
c60e1f25 | 21 | UCLASS_SPI_EMUL, /* sandbox SPI device emulator */ |
c70c71d8 | 22 | UCLASS_I2C_EMUL, /* sandbox I2C device emulator */ |
36d0d3b4 | 23 | UCLASS_PCI_EMUL, /* sandbox PCI device emulator */ |
019808f9 | 24 | UCLASS_USB_EMUL, /* sandbox USB bus device emulator */ |
3d7cf419 | 25 | UCLASS_SIMPLE_BUS, /* bus with child devices */ |
6494d708 | 26 | |
3d7cf419 SG |
27 | /* U-Boot uclasses start here - in alphabetical order */ |
28 | UCLASS_CPU, /* CPU, typically part of an SoC */ | |
29 | UCLASS_CROS_EC, /* Chrome OS EC */ | |
51f2c99e | 30 | UCLASS_DISPLAY_PORT, /* Display port video */ |
3d7cf419 | 31 | UCLASS_ETH, /* Ethernet device */ |
0040b944 | 32 | UCLASS_GPIO, /* Bank of general-purpose I/O pins */ |
c6202d85 | 33 | UCLASS_I2C, /* I2C bus */ |
20142019 | 34 | UCLASS_I2C_EEPROM, /* I2C EEPROM device */ |
3d7cf419 SG |
35 | UCLASS_I2C_GENERIC, /* Generic I2C device */ |
36 | UCLASS_LPC, /* x86 'low pin count' interface */ | |
37 | UCLASS_MASS_STORAGE, /* Mass storage device */ | |
31d2b4fd | 38 | UCLASS_MOD_EXP, /* RSA Mod Exp device */ |
3d7cf419 | 39 | UCLASS_PCH, /* x86 platform controller hub */ |
ff3e077b SG |
40 | UCLASS_PCI, /* PCI bus */ |
41 | UCLASS_PCI_GENERIC, /* Generic PCI bus device */ | |
4e389366 SG |
42 | UCLASS_PMIC, /* PMIC I/O device */ |
43 | UCLASS_REGULATOR, /* Regulator device */ | |
3d7cf419 SG |
44 | UCLASS_RTC, /* Real time clock device */ |
45 | UCLASS_SERIAL, /* Serial UART */ | |
46 | UCLASS_SPI, /* SPI bus */ | |
3d7cf419 | 47 | UCLASS_SPI_FLASH, /* SPI flash */ |
4e389366 | 48 | UCLASS_SPI_GENERIC, /* Generic SPI flash target */ |
57251285 | 49 | UCLASS_SYSCON, /* System configuration device */ |
3d7cf419 | 50 | UCLASS_THERMAL, /* Thermal sensor */ |
de31213f | 51 | UCLASS_USB, /* USB bus */ |
449230f0 | 52 | UCLASS_USB_DEV_GENERIC, /* USB generic device */ |
3d7cf419 | 53 | UCLASS_USB_HUB, /* USB hub */ |
6494d708 SG |
54 | |
55 | UCLASS_COUNT, | |
56 | UCLASS_INVALID = -1, | |
57 | }; | |
58 | ||
59 | #endif |