blob: 506ea8ffda1995436750b05bde1ebe37605de2a7 [file] [log] [blame]
Cyrille Pitchenc8f26c22016-03-17 17:04:00 +01001/*
2 * Atmel SFR (Special Function Registers) register offsets and bit definitions.
3 *
4 * Copyright (C) 2016 Atmel
5 *
6 * Author: Ludovic Desroches <ludovic.desroches@atmel.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#ifndef _LINUX_MFD_SYSCON_ATMEL_SFR_H
14#define _LINUX_MFD_SYSCON_ATMEL_SFR_H
15
Wenyou Yang2e2aa1b2016-08-23 09:05:29 +080016#define AT91_SFR_DDRCFG 0x04 /* DDR Configuration Register */
17/* 0x08 ~ 0x0c: Reserved */
18#define AT91_SFR_OHCIICR 0x10 /* OHCI INT Configuration Register */
19#define AT91_SFR_OHCIISR 0x14 /* OHCI INT Status Register */
Cyrille Pitchenc8f26c22016-03-17 17:04:00 +010020#define AT91_SFR_I2SCLKSEL 0x90 /* I2SC Register */
21
Wenyou Yang2e2aa1b2016-08-23 09:05:29 +080022/* Field definitions */
23#define AT91_OHCIICR_SUSPEND_A BIT(8)
24#define AT91_OHCIICR_SUSPEND_B BIT(9)
25#define AT91_OHCIICR_SUSPEND_C BIT(10)
26
27#define AT91_OHCIICR_USB_SUSPEND (AT91_OHCIICR_SUSPEND_A | \
28 AT91_OHCIICR_SUSPEND_B | \
29 AT91_OHCIICR_SUSPEND_C)
30
31
Cyrille Pitchenc8f26c22016-03-17 17:04:00 +010032#endif /* _LINUX_MFD_SYSCON_ATMEL_SFR_H */