source: rtems/cpukit/rtems/src/dpmeminternal2external.c @ b2de426

5
Last change on this file since b2de426 was b2de426, checked in by Sebastian Huber <sebastian.huber@…>, on 08/06/18 at 09:53:42

score: Fix _Addresses_Subtract()

Use architecture-specific integer type for an address difference.

Update #3486.

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[a6500136]1/**
2 *  @file
[1dc030f]3 *
[a6500136]4 *  @brief RTEMS Port Internal to External
5 *  @ingroup ClassicDPMEM
6 */
7
8/*
[3a638ce]9 *  COPYRIGHT (c) 1989-2014.
[1dc030f]10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
[c499856]14 *  http://www.rtems.org/license/LICENSE.
[1dc030f]15 */
16
[1095ec1]17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
[562815c]21#include <rtems/rtems/dpmemimpl.h>
[9c3bae11]22#include <rtems/score/address.h>
[1dc030f]23
24rtems_status_code rtems_port_internal_to_external(
[d3b72ca3]25  rtems_id   id,
26  void      *internal,
27  void     **external
[1dc030f]28)
29{
[9c3bae11]30  Dual_ported_memory_Control *the_port;
31  ISR_lock_Context            lock_context;
[b2de426]32  uintptr_t                   length;
[1dc030f]33
[9c3bae11]34  if ( external == NULL ) {
[e980b219]35    return RTEMS_INVALID_ADDRESS;
[9c3bae11]36  }
[e980b219]37
[9c3bae11]38  the_port = _Dual_ported_memory_Get( id, &lock_context );
39
40  if ( the_port == NULL ) {
41    return RTEMS_INVALID_ID;
42  }
43
[b2de426]44  length = (uintptr_t) _Addresses_Subtract( internal, the_port->internal_base );
[9c3bae11]45
[b2de426]46  if ( length > the_port->length ) {
[9c3bae11]47    *external = internal;
48  } else {
[b2de426]49    *external = _Addresses_Add_offset( the_port->external_base, length );
[1dc030f]50  }
51
[9c3bae11]52  _ISR_lock_ISR_enable( &lock_context );
53  return RTEMS_SUCCESSFUL;
[1dc030f]54}
Note: See TracBrowser for help on using the repository browser.