source: rtems/c/src/lib/libbsp/sparc/shared/pci/pci_memreg_sparc_le.c @ 4a7d1026

4.115
Last change on this file since 4a7d1026 was 4a7d1026, checked in by Daniel Hellstrom <daniel@…>, on 04/13/15 at 08:25:52

sparc bsps: updated license to rtems.org

  • Property mode set to 100644
File size: 611 bytes
RevLine 
[46e41c98]1/*  Registers-over-Memory Space - SPARC Little endian PCI bus definitions
2 *
3 *  COPYRIGHT (c) 2011.
4 *  Cobham Gaisler AB.
5 *
6 *  The license and distribution terms for this file may be
7 *  found in found in the file LICENSE in this distribution or at
[4a7d1026]8 *  http://www.rtems.org/license/LICENSE.
[46e41c98]9 */
10
11
12#include <pci.h>
13#include <libcpu/access.h>
14
15struct pci_memreg_ops pci_memreg_sparc_le_ops = {
16        .ld8    = _ld8,
17        .st8    = _st8,
18
19        .ld_le16 = _ld_le16,
20        .st_le16 = _st_le16,
21        .ld_be16 = _ld_be16,
22        .st_be16 = _st_be16,
23
24        .ld_le32 = _ld_le32,
25        .st_le32 = _st_le32,
26        .ld_be32 = _ld_be32,
27        .st_be32 = _st_be32,
28};
Note: See TracBrowser for help on using the repository browser.