OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [shmdr/] [cnvpkt.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  void Shm_Convert_packet( &packet )
2
 *
3
 *  This routine is the shared memory locked queue MPCI driver routine
4
 *  used to convert the RTEMS's information in a packet from non-native
5
 *  format to processor native format.
6
 *
7
 *  Input parameters:
8
 *    packet  - pointer to a packet
9
 *
10
 *  Output parameters:
11
 *    *packet - packet in native format
12
 *
13
 *  NOTE: Message buffers are not manipulated.
14
 *        Endian conversion is currently the only conversion.
15
 *
16
 *  COPYRIGHT (c) 1989-1999.
17
 *  On-Line Applications Research Corporation (OAR).
18
 *
19
 *  The license and distribution terms for this file may be
20
 *  found in the file LICENSE in this distribution or at
21
 *  http://www.OARcorp.com/rtems/license.html.
22
 *
23
 *  $Id: cnvpkt.c,v 1.2 2001-09-27 12:01:12 chris Exp $
24
 */
25
 
26
#include <rtems.h>
27
#include "shm_driver.h"
28
 
29
void Shm_Convert_packet(
30
  rtems_packet_prefix *packet
31
)
32
{
33
  rtems_unsigned32 *pkt, i;
34
 
35
  pkt = (rtems_unsigned32 *) packet;
36
  for ( i=RTEMS_MINIMUN_HETERO_CONVERSION ; i ; i--, pkt++ )
37
    *pkt = CPU_swap_u32( *pkt );
38
 
39
  for ( i=packet->to_convert ; i ; i--, pkt++ )
40
    *pkt = CPU_swap_u32( *pkt );
41
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.