blob: 23046916a001f0801bf178781b95f67c911894b7 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Wolfram Sang4ccf4be2011-08-31 20:35:40 +02002/*
3 * basic functions for devices following the "stmp" style register layout
4 *
5 * Copyright (C) 2011 Wolfram Sang, Pengutronix e.K.
Wolfram Sang4ccf4be2011-08-31 20:35:40 +02006 */
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
15extern int stmp_reset_block(void __iomem *);
16#endif /* __STMP_DEVICE_H__ */