blob: 77ff9eae904ab817aaa18206edd77606ae84ff50 [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,
20
21 /* U-Boot uclasses start here */
Simon Glass0040b942014-07-23 06:55:17 -060022 UCLASS_GPIO, /* Bank of general-purpose I/O pins */
Simon Glass6494d702014-02-26 15:59:18 -070023
24 UCLASS_COUNT,
25 UCLASS_INVALID = -1,
26};
27
28#endif