Blame view

drivers/demo/demo-shape.c 3.97 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  // SPDX-License-Identifier: GPL-2.0+
39f7611fe   Simon Glass   dm: Add a demonst...
2
3
  /*
   * Copyright (c) 2013 Google, Inc
39f7611fe   Simon Glass   dm: Add a demonst...
4
5
6
7
8
9
10
11
12
   */
  
  #include <common.h>
  #include <dm.h>
  #include <errno.h>
  #include <fdtdec.h>
  #include <malloc.h>
  #include <dm-demo.h>
  #include <asm/io.h>
a02af4aee   Simon Glass   dm: demo: Add a s...
13
  #include <asm/gpio.h>
39f7611fe   Simon Glass   dm: Add a demonst...
14
15
16
17
18
19
20
21
22
  
  DECLARE_GLOBAL_DATA_PTR;
  
  /* Shape size */
  #define WIDTH	8
  #define HEIGHT	6
  
  struct shape_data {
  	int num_chars;	/* Number of non-space characters output so far */
a02af4aee   Simon Glass   dm: demo: Add a s...
23
24
  	struct gpio_desc gpio_desc[8];
  	int gpio_count;
39f7611fe   Simon Glass   dm: Add a demonst...
25
26
27
  };
  
  /* Crazy little function to draw shapes on the console */
54c5d08a0   Heiko Schocher   dm: rename device...
28
  static int shape_hello(struct udevice *dev, int ch)
39f7611fe   Simon Glass   dm: Add a demonst...
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
  {
  	const struct dm_demo_pdata *pdata = dev_get_platdata(dev);
  	struct shape_data *data = dev_get_priv(dev);
  	static const struct shape {
  		int start;
  		int end;
  		int dstart;
  		int dend;
  	} shapes[3] = {
  		{ 0, 1, 0, 1 },
  		{ 0, WIDTH, 0, 0 },
  		{ HEIGHT / 2 - 1, WIDTH - HEIGHT / 2 + 1, -1, 1},
  	};
  	struct shape shape;
  	unsigned int index;
  	int line, pos, inside;
  	const char *colour = pdata->colour;
  	int first = 0;
  
  	if (!ch)
  		ch = pdata->default_char;
  	if (!ch)
  		ch = '@';
  
  	index = (pdata->sides / 2) - 1;
  	if (index >= ARRAY_SIZE(shapes))
  		return -EIO;
  	shape = shapes[index];
  
  	for (line = 0; line < HEIGHT; line++) {
  		first = 1;
  		for (pos = 0; pos < WIDTH; pos++) {
  			inside = pos >= shape.start && pos < shape.end;
  			if (inside) {
  				putc(first ? *colour++ : ch);
  				data->num_chars++;
  				first = 0;
  				if (!*colour)
  					colour = pdata->colour;
  			} else {
  				putc(' ');
  			}
  		}
  		putc('
  ');
  		shape.start += shape.dstart;
  		shape.end += shape.dend;
  		if (shape.start < 0) {
  			shape.dstart = -shape.dstart;
  			shape.dend = -shape.dend;
  			shape.start += shape.dstart;
  			shape.end += shape.dend;
  		}
  	}
  
  	return 0;
  }
54c5d08a0   Heiko Schocher   dm: rename device...
86
  static int shape_status(struct udevice *dev, int *status)
39f7611fe   Simon Glass   dm: Add a demonst...
87
88
89
90
91
92
  {
  	struct shape_data *data = dev_get_priv(dev);
  
  	*status = data->num_chars;
  	return 0;
  }
a02af4aee   Simon Glass   dm: demo: Add a s...
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
  static int set_light(struct udevice *dev, int light)
  {
  	struct shape_data *priv = dev_get_priv(dev);
  	struct gpio_desc *desc;
  	int ret;
  	int i;
  
  	desc = priv->gpio_desc;
  	for (i = 0; i < priv->gpio_count; i++, desc++) {
  		uint mask = 1 << i;
  
  		ret = dm_gpio_set_value(desc, light & mask);
  		if (ret < 0)
  			return ret;
  	}
  
  	return 0;
  }
  
  static int get_light(struct udevice *dev)
  {
  	struct shape_data *priv = dev_get_priv(dev);
  	struct gpio_desc *desc;
  	uint value = 0;
  	int ret;
  	int i;
  
  	desc = priv->gpio_desc;
  	for (i = 0; i < priv->gpio_count; i++, desc++) {
  		uint mask = 1 << i;
  
  		ret = dm_gpio_get_value(desc);
  		if (ret < 0)
  			return ret;
  		if (ret)
  			value |= mask;
  	}
  
  	return value;
  }
39f7611fe   Simon Glass   dm: Add a demonst...
133
134
135
  static const struct demo_ops shape_ops = {
  	.hello = shape_hello,
  	.status = shape_status,
a02af4aee   Simon Glass   dm: demo: Add a s...
136
137
  	.get_light = get_light,
  	.set_light = set_light,
39f7611fe   Simon Glass   dm: Add a demonst...
138
  };
54c5d08a0   Heiko Schocher   dm: rename device...
139
  static int shape_ofdata_to_platdata(struct udevice *dev)
39f7611fe   Simon Glass   dm: Add a demonst...
140
141
142
143
144
145
146
147
148
149
  {
  	struct dm_demo_pdata *pdata = dev_get_platdata(dev);
  	int ret;
  
  	/* Parse the data that is common with all demo devices */
  	ret = demo_parse_dt(dev);
  	if (ret)
  		return ret;
  
  	/* Parse the data that only we need */
e160f7d43   Simon Glass   dm: core: Replace...
150
  	pdata->default_char = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
39f7611fe   Simon Glass   dm: Add a demonst...
151
152
153
154
  					     "character", '@');
  
  	return 0;
  }
a02af4aee   Simon Glass   dm: demo: Add a s...
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
  static int dm_shape_probe(struct udevice *dev)
  {
  	struct shape_data *priv = dev_get_priv(dev);
  	int ret;
  
  	ret = gpio_request_list_by_name(dev, "light-gpios", priv->gpio_desc,
  					ARRAY_SIZE(priv->gpio_desc),
  					GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
  	if (ret < 0)
  		return ret;
  	priv->gpio_count = ret;
  	debug("%s: %d GPIOs
  ", __func__, priv->gpio_count);
  
  	return 0;
  }
  
  static int dm_shape_remove(struct udevice *dev)
  {
  	struct shape_data *priv = dev_get_priv(dev);
  
  	return gpio_free_list(dev, priv->gpio_desc, priv->gpio_count);
  }
ae7f45130   Simon Glass   dm: Rename struct...
178
  static const struct udevice_id demo_shape_id[] = {
39f7611fe   Simon Glass   dm: Add a demonst...
179
180
181
182
183
184
185
186
187
188
  	{ "demo-shape", 0 },
  	{ },
  };
  
  U_BOOT_DRIVER(demo_shape_drv) = {
  	.name	= "demo_shape_drv",
  	.of_match = demo_shape_id,
  	.id	= UCLASS_DEMO,
  	.ofdata_to_platdata = shape_ofdata_to_platdata,
  	.ops	= &shape_ops,
a02af4aee   Simon Glass   dm: demo: Add a s...
189
190
  	.probe = dm_shape_probe,
  	.remove = dm_shape_remove,
39f7611fe   Simon Glass   dm: Add a demonst...
191
192
193
  	.priv_auto_alloc_size = sizeof(struct shape_data),
  	.platdata_auto_alloc_size = sizeof(struct dm_demo_pdata),
  };