summaryrefslogtreecommitdiffstats
path: root/spec/rtems/dpmem/if/internal-to-external.yml
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rtems/dpmem/if/internal-to-external.yml')
-rw-r--r--spec/rtems/dpmem/if/internal-to-external.yml47
1 files changed, 38 insertions, 9 deletions
diff --git a/spec/rtems/dpmem/if/internal-to-external.yml b/spec/rtems/dpmem/if/internal-to-external.yml
index 30772809..8d0528ed 100644
--- a/spec/rtems/dpmem/if/internal-to-external.yml
+++ b/spec/rtems/dpmem/if/internal-to-external.yml
@@ -1,7 +1,8 @@
SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
-brief: '%'
+brief: |
+ Converts the internal address to the external address.
copyrights:
-- Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
+- Copyright (C) 2021 embedded brains GmbH (http://www.embedded-brains.de)
- Copyright (C) 1988, 2008 On-Line Applications Research Corporation (OAR)
definition:
default:
@@ -13,28 +14,56 @@ definition:
- void **${.:/params[2]/name}
return: ${../../status/if/code:/name}
variants: []
-description: null
+description: |
+ This directive converts a dual-ported memory address from internal to
+ external representation so that it can be passed to owner of the DPMA
+ represented by the specified port. If the given internal address is an
+ invalid dual-ported address, then the external address is set to the given
+ internal address.
enabled-by: true
-index-entries: []
+index-entries:
+- convert internal to external address
interface-type: function
links:
- role: interface-placement
uid: header
- role: interface-ingroup
uid: group
+- role: constraint
+ uid: /constraint/directive-ctx-isr
+- role: constraint
+ uid: /constraint/directive-ctx-devinit
+- role: constraint
+ uid: /constraint/directive-ctx-task
+- role: constraint
+ uid: /constraint/directive-no-preempt
name: rtems_port_internal_to_external
notes: null
params:
-- description: '%'
+- description: |
+ is the port identifier.
dir: null
name: id
-- description: '%'
+- description: |
+ is the internal address to convert.
dir: null
name: internal
-- description: '%'
- dir: null
+- description: |
+ is the pointer to a pointer variable. When the directive call is
+ successful, the external address associated with the internal address will
+ be stored in this variable.
+ dir: out
name: external
return:
return: null
- return-values: []
+ return-values:
+ - description: |
+ The requested operation was successful.
+ value: ${../../status/if/successful:/name}
+ - description: |
+ The ${.:/params[0]/name} parameter was invalid.
+ value: ${../../status/if/invalid-name:/name}
+ - description: |
+ The ${.:/params[2]/name} parameter was ${/c/if/null:/name}.
+ value: ${../../status/if/invalid-address:/name}
type: interface