source: rtems/bsps/powerpc/tqm8xx/start/cp.c @ 9964895

5
Last change on this file since 9964895 was b8c468b, checked in by Sebastian Huber <sebastian.huber@…>, on 03/23/18 at 15:11:55

bsp/tqm8xx: Move libcpu content to bsps

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 725 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.