blob: df4ba4fb5f3e1e18f22a7bb9414fc9a9fb41d3a6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass8d30fcd2012-02-15 15:51:13 -08002/*
3 * This is the interface to the sandbox GPIO driver for test code which
4 * wants to change the GPIO values reported to U-Boot.
5 *
6 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass8d30fcd2012-02-15 15:51:13 -08007 */
8
9#ifndef __ASM_SANDBOX_GPIO_H
10#define __ASM_SANDBOX_GPIO_H
11
12/*
13 * We use the generic interface, and add a back-channel.
14 *
15 * The back-channel functions are declared in this file. They should not be used
16 * except in test code.
17 *
18 * Test code can, for example, call sandbox_gpio_set_value() to set the value of
19 * a simulated GPIO. From then on, normal code in U-Boot will see this new
20 * value when it calls gpio_get_value().
21 *
22 * NOTE: DO NOT use the functions in this file except in test code!
23 */
24#include <asm-generic/gpio.h>
25
26/**
27 * Return the simulated value of a GPIO (used only in sandbox test code)
28 *
mario.six@gdsys.cc21047b32016-05-25 15:18:10 +020029 * @param dev device to use
30 * @param offset GPIO offset within bank
Simon Glass8d30fcd2012-02-15 15:51:13 -080031 * @return -1 on error, 0 if GPIO is low, >0 if high
32 */
Heiko Schocher54c5d082014-05-22 12:43:05 +020033int sandbox_gpio_get_value(struct udevice *dev, unsigned int offset);
Simon Glass8d30fcd2012-02-15 15:51:13 -080034
35/**
36 * Set the simulated value of a GPIO (used only in sandbox test code)
37 *
mario.six@gdsys.cc21047b32016-05-25 15:18:10 +020038 * @param dev device to use
39 * @param offset GPIO offset within bank
40 * @param value value to set (0 for low, non-zero for high)
Simon Glass8d30fcd2012-02-15 15:51:13 -080041 * @return -1 on error, 0 if ok
42 */
Heiko Schocher54c5d082014-05-22 12:43:05 +020043int sandbox_gpio_set_value(struct udevice *dev, unsigned int offset, int value);
Simon Glass8d30fcd2012-02-15 15:51:13 -080044
45/**
46 * Return the simulated direction of a GPIO (used only in sandbox test code)
47 *
mario.six@gdsys.cc21047b32016-05-25 15:18:10 +020048 * @param dev device to use
49 * @param offset GPIO offset within bank
Simon Glass8d30fcd2012-02-15 15:51:13 -080050 * @return -1 on error, 0 if GPIO is input, >0 if output
51 */
Heiko Schocher54c5d082014-05-22 12:43:05 +020052int sandbox_gpio_get_direction(struct udevice *dev, unsigned int offset);
Simon Glass8d30fcd2012-02-15 15:51:13 -080053
54/**
55 * Set the simulated direction of a GPIO (used only in sandbox test code)
56 *
mario.six@gdsys.cc21047b32016-05-25 15:18:10 +020057 * @param dev device to use
58 * @param offset GPIO offset within bank
59 * @param output 0 to set as input, 1 to set as output
Simon Glass8d30fcd2012-02-15 15:51:13 -080060 * @return -1 on error, 0 if ok
61 */
Heiko Schocher54c5d082014-05-22 12:43:05 +020062int sandbox_gpio_set_direction(struct udevice *dev, unsigned int offset,
Simon Glasse2d8a712014-02-26 15:59:25 -070063 int output);
Simon Glass8d30fcd2012-02-15 15:51:13 -080064
Patrick Delaunayff526652020-01-13 11:35:14 +010065/**
66 * Return the simulated flags of a GPIO (used only in sandbox test code)
67 *
68 * @param dev device to use
69 * @param offset GPIO offset within bank
70 * @return dir_flags: bitfield accesses by GPIOD_ defines
71 */
72ulong sandbox_gpio_get_dir_flags(struct udevice *dev, unsigned int offset);
73
74/**
75 * Set the simulated flags of a GPIO (used only in sandbox test code)
76 *
77 * @param dev device to use
78 * @param offset GPIO offset within bank
79 * @param flags dir_flags: bitfield accesses by GPIOD_ defines
80 * @return -1 on error, 0 if ok
81 */
82int sandbox_gpio_set_dir_flags(struct udevice *dev, unsigned int offset,
83 ulong flags);
84
Simon Glass8d30fcd2012-02-15 15:51:13 -080085#endif