2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-02-26 22:59:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Google, Inc
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fdtdec.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2014-02-26 22:59:23 +00:00
|
|
|
#include <malloc.h>
|
|
|
|
#include <dm-demo.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2014-02-26 22:59:23 +00:00
|
|
|
#include <asm/io.h>
|
2015-01-06 03:05:31 +00:00
|
|
|
#include <asm/gpio.h>
|
2014-02-26 22:59:23 +00:00
|
|
|
|
|
|
|
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 */
|
2015-01-06 03:05:31 +00:00
|
|
|
struct gpio_desc gpio_desc[8];
|
|
|
|
int gpio_count;
|
2014-02-26 22:59:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Crazy little function to draw shapes on the console */
|
2014-05-22 10:43:05 +00:00
|
|
|
static int shape_hello(struct udevice *dev, int ch)
|
2014-02-26 22:59:23 +00:00
|
|
|
{
|
2020-12-03 23:55:20 +00:00
|
|
|
const struct dm_demo_pdata *pdata = dev_get_plat(dev);
|
2014-02-26 22:59:23 +00:00
|
|
|
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('\n');
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-05-22 10:43:05 +00:00
|
|
|
static int shape_status(struct udevice *dev, int *status)
|
2014-02-26 22:59:23 +00:00
|
|
|
{
|
|
|
|
struct shape_data *data = dev_get_priv(dev);
|
|
|
|
|
|
|
|
*status = data->num_chars;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-06 03:05:31 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-02-26 22:59:23 +00:00
|
|
|
static const struct demo_ops shape_ops = {
|
|
|
|
.hello = shape_hello,
|
|
|
|
.status = shape_status,
|
2015-01-06 03:05:31 +00:00
|
|
|
.get_light = get_light,
|
|
|
|
.set_light = set_light,
|
2014-02-26 22:59:23 +00:00
|
|
|
};
|
|
|
|
|
2020-12-03 23:55:21 +00:00
|
|
|
static int shape_of_to_plat(struct udevice *dev)
|
2014-02-26 22:59:23 +00:00
|
|
|
{
|
2020-12-03 23:55:20 +00:00
|
|
|
struct dm_demo_pdata *pdata = dev_get_plat(dev);
|
2014-02-26 22:59:23 +00:00
|
|
|
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 */
|
2017-01-17 23:52:55 +00:00
|
|
|
pdata->default_char = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
|
2014-02-26 22:59:23 +00:00
|
|
|
"character", '@');
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-06 03:05:31 +00:00
|
|
|
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\n", __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);
|
|
|
|
}
|
|
|
|
|
2014-06-12 05:29:45 +00:00
|
|
|
static const struct udevice_id demo_shape_id[] = {
|
2014-02-26 22:59:23 +00:00
|
|
|
{ "demo-shape", 0 },
|
|
|
|
{ },
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(demo_shape_drv) = {
|
|
|
|
.name = "demo_shape_drv",
|
|
|
|
.of_match = demo_shape_id,
|
|
|
|
.id = UCLASS_DEMO,
|
2020-12-03 23:55:21 +00:00
|
|
|
.of_to_plat = shape_of_to_plat,
|
2014-02-26 22:59:23 +00:00
|
|
|
.ops = &shape_ops,
|
2015-01-06 03:05:31 +00:00
|
|
|
.probe = dm_shape_probe,
|
|
|
|
.remove = dm_shape_remove,
|
2020-12-03 23:55:17 +00:00
|
|
|
.priv_auto = sizeof(struct shape_data),
|
2020-12-03 23:55:18 +00:00
|
|
|
.plat_auto = sizeof(struct dm_demo_pdata),
|
2014-02-26 22:59:23 +00:00
|
|
|
};
|