David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * basic functions for devices following the "stmp" style register layout |
| 4 | * |
| 5 | * Copyright (C) 2011 Wolfram Sang, Pengutronix e.K. |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __STMP_DEVICE_H__ |
| 9 | #define __STMP_DEVICE_H__ |
| 10 | |
| 11 | #define STMP_OFFSET_REG_SET 0x4 |
| 12 | #define STMP_OFFSET_REG_CLR 0x8 |
| 13 | #define STMP_OFFSET_REG_TOG 0xc |
| 14 | |
| 15 | extern int stmp_reset_block(void __iomem *); |
| 16 | #endif /* __STMP_DEVICE_H__ */ |