diff options
author | Jochen Friedrich <jochen@scram.de> | 2007-11-26 12:03:40 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-12-13 23:47:16 -0500 |
commit | 362f9b6fa8c9670cc5496390845021c2865d049b (patch) | |
tree | ea6a97b113aa8382aeddbcfa4faf2524bd2d96dc /arch/powerpc/sysdev/commproc.c | |
parent | 721c0c8af1a27941a34af5046aae4a8369c8404c (diff) |
[POWERPC] Move CPM command handling into the cpm drivers
This patch moves the CPM command handling into commproc.c
for CPM1 and cpm2_common.c. This is yet another preparation
to get rid of drivers accessing the CPM via the global cpmp.
Signed-off-by: Jochen Friedrich <jochen@scram.de>
Acked-by: Scott Wood <scottwood@freescale.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Vitaly Bordug <vitb@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev/commproc.c')
-rw-r--r-- | arch/powerpc/sysdev/commproc.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/arch/powerpc/sysdev/commproc.c b/arch/powerpc/sysdev/commproc.c index 74d937249348..621bc6c1d408 100644 --- a/arch/powerpc/sysdev/commproc.c +++ b/arch/powerpc/sysdev/commproc.c | |||
@@ -240,6 +240,34 @@ void __init cpm_reset(void) | |||
240 | #endif | 240 | #endif |
241 | } | 241 | } |
242 | 242 | ||
243 | static DEFINE_SPINLOCK(cmd_lock); | ||
244 | |||
245 | #define MAX_CR_CMD_LOOPS 10000 | ||
246 | |||
247 | int cpm_command(u32 command, u8 opcode) | ||
248 | { | ||
249 | int i, ret; | ||
250 | unsigned long flags; | ||
251 | |||
252 | if (command & 0xffffff0f) | ||
253 | return -EINVAL; | ||
254 | |||
255 | spin_lock_irqsave(&cmd_lock, flags); | ||
256 | |||
257 | ret = 0; | ||
258 | out_be16(&cpmp->cp_cpcr, command | CPM_CR_FLG | (opcode << 8)); | ||
259 | for (i = 0; i < MAX_CR_CMD_LOOPS; i++) | ||
260 | if ((in_be16(&cpmp->cp_cpcr) & CPM_CR_FLG) == 0) | ||
261 | goto out; | ||
262 | |||
263 | printk(KERN_ERR "%s(): Not able to issue CPM command\n", __FUNCTION__); | ||
264 | ret = -EIO; | ||
265 | out: | ||
266 | spin_unlock_irqrestore(&cmd_lock, flags); | ||
267 | return ret; | ||
268 | } | ||
269 | EXPORT_SYMBOL(cpm_command); | ||
270 | |||
243 | /* We used to do this earlier, but have to postpone as long as possible | 271 | /* We used to do this earlier, but have to postpone as long as possible |
244 | * to ensure the kernel VM is now running. | 272 | * to ensure the kernel VM is now running. |
245 | */ | 273 | */ |