source: rtems/c/src/lib/libcpu/powerpc/mpc8xx/cpm/cp.c @ 49d872d9

4.104.114.95
Last change on this file since 49d872d9 was 49d872d9, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 09/08/08 at 09:57:15

maintenance

  • Property mode set to 100644
File size: 728 bytes
Line 
1/*
2 * cp.c
3 *
4 * MPC8xx CPM RISC Communication Processor routines.
5 *
6 * Based on code (alloc860.c in eth_comm port) by
7 * Jay Monkman (jmonkman@frasca.com),
8 * which, in turn, is based on code by
9 * W. Eric Norum (eric@skatter.usask.ca).
10 *
11 * Modifications by Darlene Stewart (Darlene.Stewart@iit.nrc.ca):
12 * Copyright (c) 1999, National Research Council of Canada
13 */
14
15#include <rtems.h>
16#include <mpc8xx.h>
17#include <mpc8xx/cpm.h>
18
19/*
20 * Send a command to the CPM RISC processer
21 */
22
23void m8xx_cp_execute_cmd( uint16_t   command )
24{
25  rtems_interrupt_level lvl;
26 
27  rtems_interrupt_disable(lvl);
28  while (m8xx.cpcr & M8xx_CR_FLG) {
29    continue;
30  }
31
32  m8xx.cpcr = command | M8xx_CR_FLG;
33  rtems_interrupt_enable (lvl);
34}
Note: See TracBrowser for help on using the repository browser.