blob: 6adb4154c25bf3af360b0bb3ac1acd39b394b2bb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glasscd556522015-07-06 12:54:35 -06002/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glasscd556522015-07-06 12:54:35 -06005 */
6
Simon Glasscd556522015-07-06 12:54:35 -06007#include <dm.h>
8#include <errno.h>
9#include <syscon.h>
10#include <asm/test.h>
11#include <dm/lists.h>
12
Simon Glasscd556522015-07-06 12:54:35 -060013static const struct udevice_id sandbox_syscon_ids[] = {
14 { .compatible = "sandbox,syscon0", .data = SYSCON0 },
15 { .compatible = "sandbox,syscon1", .data = SYSCON1 },
16 { }
17};
18
19U_BOOT_DRIVER(sandbox_syscon) = {
20 .name = "sandbox_syscon",
21 .id = UCLASS_SYSCON,
22 .of_match = sandbox_syscon_ids,
23};