2014-02-26 22:59:18 +00: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 12:55:18 +00:00
|
|
|
UCLASS_TEST_BUS,
|
2014-10-14 05:41:53 +00:00
|
|
|
UCLASS_SPI_EMUL, /* sandbox SPI device emulator */
|
2014-12-10 15:55:49 +00:00
|
|
|
UCLASS_I2C_EMUL, /* sandbox I2C device emulator */
|
2014-10-04 17:29:37 +00:00
|
|
|
UCLASS_SIMPLE_BUS,
|
2014-02-26 22:59:18 +00:00
|
|
|
|
|
|
|
/* U-Boot uclasses start here */
|
2014-07-23 12:55:17 +00:00
|
|
|
UCLASS_GPIO, /* Bank of general-purpose I/O pins */
|
2014-09-04 22:27:26 +00:00
|
|
|
UCLASS_SERIAL, /* Serial UART */
|
2014-10-14 05:41:52 +00:00
|
|
|
UCLASS_SPI, /* SPI bus */
|
|
|
|
UCLASS_SPI_GENERIC, /* Generic SPI flash target */
|
2014-10-14 05:42:06 +00:00
|
|
|
UCLASS_SPI_FLASH, /* SPI flash */
|
2014-10-14 05:42:14 +00:00
|
|
|
UCLASS_CROS_EC, /* Chrome OS EC */
|
2014-11-20 13:14:13 +00:00
|
|
|
UCLASS_THERMAL, /* Thermal sensor */
|
2014-12-10 15:55:47 +00:00
|
|
|
UCLASS_I2C, /* I2C bus */
|
|
|
|
UCLASS_I2C_GENERIC, /* Generic I2C device */
|
2014-02-26 22:59:18 +00:00
|
|
|
|
|
|
|
UCLASS_COUNT,
|
|
|
|
UCLASS_INVALID = -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|