blob: 74d7a4cd9598cce32ea0f8cc70659a4496b785bb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassb43d0442012-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 Glassb43d0442012-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
Simon Glass44a1a5b2021-02-04 21:22:00 -070026/* Our own private GPIO flags, which musn't conflict with GPIOD_... */
27#define GPIOD_EXT_HIGH BIT(31) /* external source is high (else low) */
28
29#define GPIOD_SANDBOX_MASK BIT(31)
30
Simon Glassb43d0442012-02-15 15:51:13 -080031/**
32 * Return the simulated value of a GPIO (used only in sandbox test code)
33 *
mario.six@gdsys.cceeed18c2016-05-25 15:18:10 +020034 * @param dev device to use
35 * @param offset GPIO offset within bank
Simon Glassb43d0442012-02-15 15:51:13 -080036 * @return -1 on error, 0 if GPIO is low, >0 if high
37 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +020038int sandbox_gpio_get_value(struct udevice *dev, unsigned int offset);
Simon Glassb43d0442012-02-15 15:51:13 -080039
40/**
41 * Set the simulated value of a GPIO (used only in sandbox test code)
42 *
mario.six@gdsys.cceeed18c2016-05-25 15:18:10 +020043 * @param dev device to use
44 * @param offset GPIO offset within bank
45 * @param value value to set (0 for low, non-zero for high)
Simon Glassb43d0442012-02-15 15:51:13 -080046 * @return -1 on error, 0 if ok
47 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +020048int sandbox_gpio_set_value(struct udevice *dev, unsigned int offset, int value);
Simon Glassb43d0442012-02-15 15:51:13 -080049
50/**
51 * Return the simulated direction of a GPIO (used only in sandbox test code)
52 *
mario.six@gdsys.cceeed18c2016-05-25 15:18:10 +020053 * @param dev device to use
54 * @param offset GPIO offset within bank
Simon Glassb43d0442012-02-15 15:51:13 -080055 * @return -1 on error, 0 if GPIO is input, >0 if output
56 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +020057int sandbox_gpio_get_direction(struct udevice *dev, unsigned int offset);
Simon Glassb43d0442012-02-15 15:51:13 -080058
59/**
60 * Set the simulated direction of a GPIO (used only in sandbox test code)
61 *
mario.six@gdsys.cceeed18c2016-05-25 15:18:10 +020062 * @param dev device to use
63 * @param offset GPIO offset within bank
64 * @param output 0 to set as input, 1 to set as output
Simon Glassb43d0442012-02-15 15:51:13 -080065 * @return -1 on error, 0 if ok
66 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +020067int sandbox_gpio_set_direction(struct udevice *dev, unsigned int offset,
Simon Glassb4d70702014-02-26 15:59:25 -070068 int output);
Simon Glassb43d0442012-02-15 15:51:13 -080069
Patrick Delaunay28bdaa52020-01-13 11:35:14 +010070/**
71 * Return the simulated flags of a GPIO (used only in sandbox test code)
72 *
73 * @param dev device to use
74 * @param offset GPIO offset within bank
75 * @return dir_flags: bitfield accesses by GPIOD_ defines
76 */
Simon Glass3f2d5752021-02-04 21:21:59 -070077ulong sandbox_gpio_get_flags(struct udevice *dev, unsigned int offset);
Patrick Delaunay28bdaa52020-01-13 11:35:14 +010078
79/**
80 * Set the simulated flags of a GPIO (used only in sandbox test code)
81 *
82 * @param dev device to use
83 * @param offset GPIO offset within bank
Simon Glass3f2d5752021-02-04 21:21:59 -070084 * @param flags bitfield accesses by GPIOD_ defines
Patrick Delaunay28bdaa52020-01-13 11:35:14 +010085 * @return -1 on error, 0 if ok
86 */
Simon Glass3f2d5752021-02-04 21:21:59 -070087int sandbox_gpio_set_flags(struct udevice *dev, unsigned int offset,
88 ulong flags);
Patrick Delaunay28bdaa52020-01-13 11:35:14 +010089
Simon Glassb43d0442012-02-15 15:51:13 -080090#endif