blob: dd95fca428dc54d54c1d706431f7ef6e512c78e1 [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 Glass6494d702014-02-26 15:59:18 -070021
22 /* U-Boot uclasses start here */
Simon Glass0040b942014-07-23 06:55:17 -060023 UCLASS_GPIO, /* Bank of general-purpose I/O pins */
Simon Glass6494d702014-02-26 15:59:18 -070024
25 UCLASS_COUNT,
26 UCLASS_INVALID = -1,
27};
28
29#endif