Blame view

drivers/demo/demo-uclass.c 1.44 KB
39f7611fe   Simon Glass   dm: Add a demonst...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  /*
   * Copyright (c) 2013 Google, Inc
   *
   * (C) Copyright 2012
   * Pavel Herrmann <morpheus.ibis@gmail.com>
   *
   * SPDX-License-Identifier:	GPL-2.0+
   */
  
  #include <common.h>
  #include <dm.h>
  #include <dm-demo.h>
  #include <errno.h>
  #include <fdtdec.h>
  #include <malloc.h>
  #include <asm/io.h>
  #include <linux/list.h>
  
  DECLARE_GLOBAL_DATA_PTR;
  
  UCLASS_DRIVER(demo) = {
74f96dada   Simon Glass   dm: Give the demo...
22
  	.name		= "demo",
39f7611fe   Simon Glass   dm: Add a demonst...
23
24
  	.id		= UCLASS_DEMO,
  };
54c5d08a0   Heiko Schocher   dm: rename device...
25
  int demo_hello(struct udevice *dev, int ch)
39f7611fe   Simon Glass   dm: Add a demonst...
26
27
28
29
30
31
32
33
  {
  	const struct demo_ops *ops = device_get_ops(dev);
  
  	if (!ops->hello)
  		return -ENOSYS;
  
  	return ops->hello(dev, ch);
  }
54c5d08a0   Heiko Schocher   dm: rename device...
34
  int demo_status(struct udevice *dev, int *status)
39f7611fe   Simon Glass   dm: Add a demonst...
35
36
37
38
39
40
41
42
  {
  	const struct demo_ops *ops = device_get_ops(dev);
  
  	if (!ops->status)
  		return -ENOSYS;
  
  	return ops->status(dev, status);
  }
a02af4aee   Simon Glass   dm: demo: Add a s...
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  int demo_get_light(struct udevice *dev)
  {
  	const struct demo_ops *ops = device_get_ops(dev);
  
  	if (!ops->get_light)
  		return -ENOSYS;
  
  	return ops->get_light(dev);
  }
  
  int demo_set_light(struct udevice *dev, int light)
  {
  	const struct demo_ops *ops = device_get_ops(dev);
  
  	if (!ops->set_light)
  		return -ENOSYS;
  
  	return ops->set_light(dev, light);
  }
54c5d08a0   Heiko Schocher   dm: rename device...
62
  int demo_parse_dt(struct udevice *dev)
39f7611fe   Simon Glass   dm: Add a demonst...
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  {
  	struct dm_demo_pdata *pdata = dev_get_platdata(dev);
  	int dn = dev->of_offset;
  
  	pdata->sides = fdtdec_get_int(gd->fdt_blob, dn, "sides", 0);
  	pdata->colour = fdt_getprop(gd->fdt_blob, dn, "colour", NULL);
  	if (!pdata->sides || !pdata->colour) {
  		debug("%s: Invalid device tree data
  ", __func__);
  		return -EINVAL;
  	}
  
  	return 0;
  }