blob: 3341572e8a6450f8bb0ad759e15e8fdd76c7e309 [file] [log] [blame]
Simon Glass39f76112014-02-26 15:59:23 -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#include <common.h>
11#include <dm.h>
12#include <dm-demo.h>
13#include <errno.h>
14#include <fdtdec.h>
15#include <malloc.h>
16#include <asm/io.h>
17#include <linux/list.h>
18
19DECLARE_GLOBAL_DATA_PTR;
20
21UCLASS_DRIVER(demo) = {
Simon Glass74f96da2014-07-23 06:55:24 -060022 .name = "demo",
Simon Glass39f76112014-02-26 15:59:23 -070023 .id = UCLASS_DEMO,
24};
25
Heiko Schocher54c5d082014-05-22 12:43:05 +020026int demo_hello(struct udevice *dev, int ch)
Simon Glass39f76112014-02-26 15:59:23 -070027{
28 const struct demo_ops *ops = device_get_ops(dev);
29
30 if (!ops->hello)
31 return -ENOSYS;
32
33 return ops->hello(dev, ch);
34}
35
Heiko Schocher54c5d082014-05-22 12:43:05 +020036int demo_status(struct udevice *dev, int *status)
Simon Glass39f76112014-02-26 15:59:23 -070037{
38 const struct demo_ops *ops = device_get_ops(dev);
39
40 if (!ops->status)
41 return -ENOSYS;
42
43 return ops->status(dev, status);
44}
45
Simon Glassa02af4a2015-01-05 20:05:31 -070046int demo_get_light(struct udevice *dev)
47{
48 const struct demo_ops *ops = device_get_ops(dev);
49
50 if (!ops->get_light)
51 return -ENOSYS;
52
53 return ops->get_light(dev);
54}
55
56int demo_set_light(struct udevice *dev, int light)
57{
58 const struct demo_ops *ops = device_get_ops(dev);
59
60 if (!ops->set_light)
61 return -ENOSYS;
62
63 return ops->set_light(dev, light);
64}
65
Heiko Schocher54c5d082014-05-22 12:43:05 +020066int demo_parse_dt(struct udevice *dev)
Simon Glass39f76112014-02-26 15:59:23 -070067{
68 struct dm_demo_pdata *pdata = dev_get_platdata(dev);
Simon Glasse160f7d2017-01-17 16:52:55 -070069 int dn = dev_of_offset(dev);
Simon Glass39f76112014-02-26 15:59:23 -070070
71 pdata->sides = fdtdec_get_int(gd->fdt_blob, dn, "sides", 0);
72 pdata->colour = fdt_getprop(gd->fdt_blob, dn, "colour", NULL);
73 if (!pdata->sides || !pdata->colour) {
74 debug("%s: Invalid device tree data\n", __func__);
75 return -EINVAL;
76 }
77
78 return 0;
79}