Merge branch 'master' of git://git.denx.de/u-boot-socfpga
[oweals/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_ADC,             /* Analog-to-digital converter */
32         UCLASS_AHCI,            /* SATA disk controller */
33         UCLASS_AUDIO_CODEC,     /* Audio codec with control and data path */
34         UCLASS_AXI,             /* AXI bus */
35         UCLASS_BLK,             /* Block device */
36         UCLASS_BOARD,           /* Device information from hardware */
37         UCLASS_BOOTCOUNT,       /* Bootcount backing store */
38         UCLASS_CACHE,           /* Cache controller */
39         UCLASS_CLK,             /* Clock source, e.g. used by peripherals */
40         UCLASS_CPU,             /* CPU, typically part of an SoC */
41         UCLASS_CROS_EC,         /* Chrome OS EC */
42         UCLASS_DISPLAY,         /* Display (e.g. DisplayPort, HDMI) */
43         UCLASS_DSI_HOST,        /* Display Serial Interface host */
44         UCLASS_DMA,             /* Direct Memory Access */
45         UCLASS_EFI,             /* EFI managed devices */
46         UCLASS_ETH,             /* Ethernet device */
47         UCLASS_FIRMWARE,        /* Firmware */
48         UCLASS_FS_FIRMWARE_LOADER,              /* Generic loader */
49         UCLASS_GPIO,            /* Bank of general-purpose I/O pins */
50         UCLASS_HWSPINLOCK,      /* Hardware semaphores */
51         UCLASS_I2C,             /* I2C bus */
52         UCLASS_I2C_EEPROM,      /* I2C EEPROM device */
53         UCLASS_I2C_GENERIC,     /* Generic I2C device */
54         UCLASS_I2C_MUX,         /* I2C multiplexer */
55         UCLASS_I2S,             /* I2S bus */
56         UCLASS_IDE,             /* IDE device */
57         UCLASS_IRQ,             /* Interrupt controller */
58         UCLASS_KEYBOARD,        /* Keyboard input device */
59         UCLASS_LED,             /* Light-emitting diode (LED) */
60         UCLASS_LPC,             /* x86 'low pin count' interface */
61         UCLASS_MAILBOX,         /* Mailbox controller */
62         UCLASS_MASS_STORAGE,    /* Mass storage device */
63         UCLASS_MDIO,            /* MDIO bus */
64         UCLASS_MDIO_MUX,        /* MDIO MUX/switch */
65         UCLASS_MISC,            /* Miscellaneous device */
66         UCLASS_MMC,             /* SD / MMC card or chip */
67         UCLASS_MOD_EXP,         /* RSA Mod Exp device */
68         UCLASS_MTD,             /* Memory Technology Device (MTD) device */
69         UCLASS_NOP,             /* No-op devices */
70         UCLASS_NORTHBRIDGE,     /* Intel Northbridge / SDRAM controller */
71         UCLASS_NVME,            /* NVM Express device */
72         UCLASS_PANEL,           /* Display panel, such as an LCD */
73         UCLASS_PANEL_BACKLIGHT, /* Backlight controller for panel */
74         UCLASS_PCH,             /* x86 platform controller hub */
75         UCLASS_PCI,             /* PCI bus */
76         UCLASS_PCI_EP,          /* PCI endpoint device */
77         UCLASS_PCI_GENERIC,     /* Generic PCI bus device */
78         UCLASS_PHY,             /* Physical Layer (PHY) device */
79         UCLASS_PINCONFIG,       /* Pin configuration node device */
80         UCLASS_PINCTRL,         /* Pinctrl (pin muxing/configuration) device */
81         UCLASS_PMIC,            /* PMIC I/O device */
82         UCLASS_POWER_DOMAIN,    /* (SoC) Power domains */
83         UCLASS_PWM,             /* Pulse-width modulator */
84         UCLASS_PWRSEQ,          /* Power sequence device */
85         UCLASS_RAM,             /* RAM controller */
86         UCLASS_REGULATOR,       /* Regulator device */
87         UCLASS_REMOTEPROC,      /* Remote Processor device */
88         UCLASS_RESET,           /* Reset controller device */
89         UCLASS_RTC,             /* Real time clock device */
90         UCLASS_SCSI,            /* SCSI device */
91         UCLASS_SERIAL,          /* Serial UART */
92         UCLASS_SIMPLE_BUS,      /* Bus with child devices */
93         UCLASS_SMEM,            /* Shared memory interface */
94         UCLASS_SOUND,           /* Playing simple sounds */
95         UCLASS_SPI,             /* SPI bus */
96         UCLASS_SPI_FLASH,       /* SPI flash */
97         UCLASS_SPI_GENERIC,     /* Generic SPI flash target */
98         UCLASS_SPMI,            /* System Power Management Interface bus */
99         UCLASS_SYSCON,          /* System configuration device */
100         UCLASS_SYSRESET,        /* System reset device */
101         UCLASS_TEE,             /* Trusted Execution Environment device */
102         UCLASS_THERMAL,         /* Thermal sensor */
103         UCLASS_TIMER,           /* Timer device */
104         UCLASS_TPM,             /* Trusted Platform Module TIS interface */
105         UCLASS_USB,             /* USB bus */
106         UCLASS_USB_DEV_GENERIC, /* USB generic device */
107         UCLASS_USB_HUB,         /* USB hub */
108         UCLASS_USB_GADGET_GENERIC,      /* USB generic device */
109         UCLASS_VIDEO,           /* Video or LCD device */
110         UCLASS_VIDEO_BRIDGE,    /* Video bridge, e.g. DisplayPort to LVDS */
111         UCLASS_VIDEO_CONSOLE,   /* Text console driver for video device */
112         UCLASS_VIDEO_OSD,       /* On-screen display */
113         UCLASS_VIRTIO,          /* VirtIO transport device */
114         UCLASS_W1,              /* Dallas 1-Wire bus */
115         UCLASS_W1_EEPROM,       /* one-wire EEPROMs */
116         UCLASS_WDT,             /* Watchdog Timer driver */
117
118         UCLASS_COUNT,
119         UCLASS_INVALID = -1,
120 };
121
122 #endif