mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 04:11:49 +00:00
e3726fcf26
Add an initial driver for communicating with the Power, Reset and Clock Management Unit (PRCMU) firmware in U8500. This initial version supports AB8500 communication only. Signed-off-by: Mattias Nilsson <mattias.i.nilsson@stericsson.com> Signed-off-by: Mattias Wallin <mattias.wallin@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
16 lines
350 B
C
16 lines
350 B
C
/*
|
|
* Copyright (C) STMicroelectronics 2009
|
|
* Copyright (C) ST-Ericsson SA 2010
|
|
*
|
|
* License Terms: GNU General Public License v2
|
|
*
|
|
* PRCMU f/w APIs
|
|
*/
|
|
#ifndef __MACH_PRCMU_H
|
|
#define __MACH_PRCMU_H
|
|
|
|
int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size);
|
|
int prcmu_abb_write(u8 slave, u8 reg, u8 *value, u8 size);
|
|
|
|
#endif /* __MACH_PRCMU_H */
|