]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/dm-demo.h
dm: sunxi: dts: Add sun7i device tree files
[people/ms/u-boot.git] / include / dm-demo.h
CommitLineData
39f7611f
SG
1/*
2 * Copyright (c) 2013 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef __DM_DEMO_H
8#define __DM_DEMO_H
9
10#include <dm.h>
11
12/**
13 * struct dm_demo_pdata - configuration data for demo instance
14 *
15 * @colour: Color of the demo
16 * @sides: Numbers of sides
17 * @default_char: Default ASCII character to output (65 = 'A')
18 */
19struct dm_demo_pdata {
20 const char *colour;
21 int sides;
22 int default_char;
23};
24
25struct demo_ops {
54c5d08a
HS
26 int (*hello)(struct udevice *dev, int ch);
27 int (*status)(struct udevice *dev, int *status);
39f7611f
SG
28};
29
54c5d08a
HS
30int demo_hello(struct udevice *dev, int ch);
31int demo_status(struct udevice *dev, int *status);
39f7611f
SG
32int demo_list(void);
33
54c5d08a 34int demo_parse_dt(struct udevice *dev);
39f7611f
SG
35
36#endif