Merge branch 'next' of https://gitlab.denx.de/u-boot/custodians/u-boot-x86 into next
[platform/kernel/u-boot.git] / include / dm / uclass-id.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2013 Google, Inc
4  *
5  * (C) Copyright 2012
6  * Pavel Herrmann <morpheus.ibis@gmail.com>
7  */
8
9 #ifndef _DM_UCLASS_ID_H
10 #define _DM_UCLASS_ID_H
11
12 /* TODO(sjg@chromium.org): this could be compile-time generated */
13 enum uclass_id {
14         /* These are used internally by driver model */
15         UCLASS_ROOT = 0,
16         UCLASS_DEMO,
17         UCLASS_TEST,
18         UCLASS_TEST_FDT,
19         UCLASS_TEST_BUS,
20         UCLASS_TEST_PROBE,
21         UCLASS_TEST_DUMMY,
22         UCLASS_SPI_EMUL,        /* sandbox SPI device emulator */
23         UCLASS_I2C_EMUL,        /* sandbox I2C device emulator */
24         UCLASS_I2C_EMUL_PARENT, /* parent for I2C device emulators */
25         UCLASS_PCI_EMUL,        /* sandbox PCI device emulator */
26         UCLASS_PCI_EMUL_PARENT, /* parent for PCI device emulators */
27         UCLASS_USB_EMUL,        /* sandbox USB bus device emulator */
28         UCLASS_AXI_EMUL,        /* sandbox AXI bus device emulator */
29
30         /* U-Boot uclasses start here - in alphabetical order */
31         UCLASS_ACPI_PMC,        /* (x86) Power-management controller (PMC) */
32         UCLASS_ADC,             /* Analog-to-digital converter */
33         UCLASS_AHCI,            /* SATA disk controller */
34         UCLASS_AUDIO_CODEC,     /* Audio codec with control and data path */
35         UCLASS_AXI,             /* AXI bus */
36         UCLASS_BLK,             /* Block device */
37         UCLASS_BOARD,           /* Device information from hardware */
38         UCLASS_BOOTCOUNT,       /* Bootcount backing store */
39         UCLASS_CACHE,           /* Cache controller */
40         UCLASS_CLK,             /* Clock source, e.g. used by peripherals */
41         UCLASS_CPU,             /* CPU, typically part of an SoC */
42         UCLASS_CROS_EC,         /* Chrome OS EC */
43         UCLASS_DISPLAY,         /* Display (e.g. DisplayPort, HDMI) */
44         UCLASS_DSI_HOST,        /* Display Serial Interface host */
45         UCLASS_DMA,             /* Direct Memory Access */
46         UCLASS_EFI,             /* EFI managed devices */
47         UCLASS_ETH,             /* Ethernet device */
48         UCLASS_FIRMWARE,        /* Firmware */
49         UCLASS_FS_FIRMWARE_LOADER,              /* Generic loader */
50         UCLASS_GPIO,            /* Bank of general-purpose I/O pins */
51         UCLASS_HWSPINLOCK,      /* Hardware semaphores */
52         UCLASS_I2C,             /* I2C bus */
53         UCLASS_I2C_EEPROM,      /* I2C EEPROM device */
54         UCLASS_I2C_GENERIC,     /* Generic I2C device */
55         UCLASS_I2C_MUX,         /* I2C multiplexer */
56         UCLASS_I2S,             /* I2S bus */
57         UCLASS_IDE,             /* IDE device */
58         UCLASS_IRQ,             /* Interrupt controller */
59         UCLASS_KEYBOARD,        /* Keyboard input device */
60         UCLASS_LED,             /* Light-emitting diode (LED) */
61         UCLASS_LPC,             /* x86 'low pin count' interface */
62         UCLASS_MAILBOX,         /* Mailbox controller */
63         UCLASS_MASS_STORAGE,    /* Mass storage device */
64         UCLASS_MDIO,            /* MDIO bus */
65         UCLASS_MDIO_MUX,        /* MDIO MUX/switch */
66         UCLASS_MISC,            /* Miscellaneous device */
67         UCLASS_MMC,             /* SD / MMC card or chip */
68         UCLASS_MOD_EXP,         /* RSA Mod Exp device */
69         UCLASS_MTD,             /* Memory Technology Device (MTD) device */
70         UCLASS_NOP,             /* No-op devices */
71         UCLASS_NORTHBRIDGE,     /* Intel Northbridge / SDRAM controller */
72         UCLASS_NVME,            /* NVM Express device */
73         UCLASS_P2SB,            /* (x86) Primary-to-Sideband Bus */
74         UCLASS_PANEL,           /* Display panel, such as an LCD */
75         UCLASS_PANEL_BACKLIGHT, /* Backlight controller for panel */
76         UCLASS_PCH,             /* x86 platform controller hub */
77         UCLASS_PCI,             /* PCI bus */
78         UCLASS_PCI_EP,          /* PCI endpoint device */
79         UCLASS_PCI_GENERIC,     /* Generic PCI bus device */
80         UCLASS_PHY,             /* Physical Layer (PHY) device */
81         UCLASS_PINCONFIG,       /* Pin configuration node device */
82         UCLASS_PINCTRL,         /* Pinctrl (pin muxing/configuration) device */
83         UCLASS_PMIC,            /* PMIC I/O device */
84         UCLASS_POWER_DOMAIN,    /* (SoC) Power domains */
85         UCLASS_PWM,             /* Pulse-width modulator */
86         UCLASS_PWRSEQ,          /* Power sequence device */
87         UCLASS_RAM,             /* RAM controller */
88         UCLASS_REGULATOR,       /* Regulator device */
89         UCLASS_REMOTEPROC,      /* Remote Processor device */
90         UCLASS_RESET,           /* Reset controller device */
91         UCLASS_RTC,             /* Real time clock device */
92         UCLASS_SCSI,            /* SCSI device */
93         UCLASS_SERIAL,          /* Serial UART */
94         UCLASS_SIMPLE_BUS,      /* Bus with child devices */
95         UCLASS_SMEM,            /* Shared memory interface */
96         UCLASS_SOUND,           /* Playing simple sounds */
97         UCLASS_SPI,             /* SPI bus */
98         UCLASS_SPI_FLASH,       /* SPI flash */
99         UCLASS_SPI_GENERIC,     /* Generic SPI flash target */
100         UCLASS_SPMI,            /* System Power Management Interface bus */
101         UCLASS_SYSCON,          /* System configuration device */
102         UCLASS_SYSRESET,        /* System reset device */
103         UCLASS_TEE,             /* Trusted Execution Environment device */
104         UCLASS_THERMAL,         /* Thermal sensor */
105         UCLASS_TIMER,           /* Timer device */
106         UCLASS_TPM,             /* Trusted Platform Module TIS interface */
107         UCLASS_UFS,             /* Universal Flash Storage */
108         UCLASS_USB,             /* USB bus */
109         UCLASS_USB_DEV_GENERIC, /* USB generic device */
110         UCLASS_USB_HUB,         /* USB hub */
111         UCLASS_USB_GADGET_GENERIC,      /* USB generic device */
112         UCLASS_VIDEO,           /* Video or LCD device */
113         UCLASS_VIDEO_BRIDGE,    /* Video bridge, e.g. DisplayPort to LVDS */
114         UCLASS_VIDEO_CONSOLE,   /* Text console driver for video device */
115         UCLASS_VIDEO_OSD,       /* On-screen display */
116         UCLASS_VIRTIO,          /* VirtIO transport device */
117         UCLASS_W1,              /* Dallas 1-Wire bus */
118         UCLASS_W1_EEPROM,       /* one-wire EEPROMs */
119         UCLASS_WDT,             /* Watchdog Timer driver */
120
121         UCLASS_COUNT,
122         UCLASS_INVALID = -1,
123 };
124
125 #endif