summaryrefslogtreecommitdiffstats
path: root/bsps/sparc/shared/pci/pci_memreg_sparc_le.c
blob: bc95811f2415aa15040fc589cac3442b446f1da1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*  Registers-over-Memory Space - SPARC Little endian PCI bus definitions
 *
 *  COPYRIGHT (c) 2011.
 *  Cobham Gaisler AB.
 *
 *  The license and distribution terms for this file may be
 *  found in found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */


#include <pci.h>
#include <libcpu/access.h>

struct pci_memreg_ops pci_memreg_sparc_le_ops = {
	.ld8    = _ld8,
	.st8    = _st8,

	.ld_le16 = _ld_le16,
	.st_le16 = _st_le16,
	.ld_be16 = _ld_be16,
	.st_be16 = _st_be16,

	.ld_le32 = _ld_le32,
	.st_le32 = _st_le32,
	.ld_be32 = _ld_be32,
	.st_be32 = _st_be32,
};