blob: 09f9a47d4de6c9435c58ad79d6b74b2149d5c946 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass39f76112014-02-26 15:59:23 -07002/*
3 * Copyright (c) 2013 Google, Inc
4 *
5 * (C) Copyright 2012
6 * Pavel Herrmann <morpheus.ibis@gmail.com>
Simon Glass39f76112014-02-26 15:59:23 -07007 */
8
9#include <common.h>
10#include <dm.h>
11#include <dm-demo.h>
12#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Simon Glass39f76112014-02-26 15:59:23 -070014#include <malloc.h>
15#include <asm/io.h>
16#include <linux/list.h>
17
Simon Glass39f76112014-02-26 15:59:23 -070018UCLASS_DRIVER(demo) = {
Simon Glass74f96da2014-07-23 06:55:24 -060019 .name = "demo",
Simon Glass39f76112014-02-26 15:59:23 -070020 .id = UCLASS_DEMO,
21};
22
Heiko Schocher54c5d082014-05-22 12:43:05 +020023int demo_hello(struct udevice *dev, int ch)
Simon Glass39f76112014-02-26 15:59:23 -070024{
25 const struct demo_ops *ops = device_get_ops(dev);
26
27 if (!ops->hello)
28 return -ENOSYS;
29
30 return ops->hello(dev, ch);
31}
32
Heiko Schocher54c5d082014-05-22 12:43:05 +020033int demo_status(struct udevice *dev, int *status)
Simon Glass39f76112014-02-26 15:59:23 -070034{
35 const struct demo_ops *ops = device_get_ops(dev);
36
37 if (!ops->status)
38 return -ENOSYS;
39
40 return ops->status(dev, status);
41}
42
Simon Glassa02af4a2015-01-05 20:05:31 -070043int demo_get_light(struct udevice *dev)
44{
45 const struct demo_ops *ops = device_get_ops(dev);
46
47 if (!ops->get_light)
48 return -ENOSYS;
49
50 return ops->get_light(dev);
51}
52
53int demo_set_light(struct udevice *dev, int light)
54{
55 const struct demo_ops *ops = device_get_ops(dev);
56
57 if (!ops->set_light)
58 return -ENOSYS;
59
60 return ops->set_light(dev, light);
61}
62
Heiko Schocher54c5d082014-05-22 12:43:05 +020063int demo_parse_dt(struct udevice *dev)
Simon Glass39f76112014-02-26 15:59:23 -070064{
Simon Glassc69cda22020-12-03 16:55:20 -070065 struct dm_demo_pdata *pdata = dev_get_plat(dev);
Simon Glass39f76112014-02-26 15:59:23 -070066
Patrick Delaunay455f2d12021-09-20 17:58:33 +020067 pdata->sides = dev_read_s32_default(dev, "sides", 0);
68 pdata->colour = dev_read_string(dev, "colour");
Simon Glass39f76112014-02-26 15:59:23 -070069 if (!pdata->sides || !pdata->colour) {
70 debug("%s: Invalid device tree data\n", __func__);
71 return -EINVAL;
72 }
73
74 return 0;
75}