summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/bfin/mmu/mmu.h
blob: 423a1c0c6c01605b04a69a5db9180d29c3c7f30b (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*  Blackfin MMU Support
 *
 *  Copyright (c) 2008 Kallisti Labs, Los Gatos, CA, USA
 *             written by Allan Hessenflow <allanh@kallisti.com>
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 */


/* NOTE: this currently only implements a static table.  It should be made
   to handle more regions than fit in the CPLBs, with an exception handler
   to do replacements as needed.  This would of course require great care
   to insure any storage required by the exception handler, including any
   stack space, the exception handler itself, and the region descriptors
   it needs to update the CPLBs, are in regions that will never be
   replaced. */

#ifndef _mmu_h_
#define _mmu_h_

#include <libcpu/mmuRegs.h>


#define INSTR_NOCACHE   (ICPLB_DATA_CPLB_USER_RD | \
                         ICPLB_DATA_CPLB_VALID)

#define INSTR_CACHEABLE (ICPLB_DATA_CPLB_L1_CHBL | \
                         ICPLB_DATA_CPLB_USER_RD | \
                         ICPLB_DATA_CPLB_VALID)

#define DATA_NOCACHE   (DCPLB_DATA_CPLB_DIRTY | \
                        DCPLB_DATA_CPLB_SUPV_WR | \
                        DCPLB_DATA_CPLB_USER_WR | \
                        DCPLB_DATA_CPLB_USER_RD | \
                        DCPLB_DATA_CPLB_VALID)

#define DATA_WRITEBACK (DCPLB_DATA_CPLB_L1_AOW | \
                        DCPLB_DATA_CPLB_L1_CHBL | \
                        DCPLB_DATA_CPLB_DIRTY | \
                        DCPLB_DATA_CPLB_SUPV_WR | \
                        DCPLB_DATA_CPLB_USER_WR | \
                        DCPLB_DATA_CPLB_USER_RD | \
                        DCPLB_DATA_CPLB_VALID)


#ifdef __cplusplus
extern "C" {
#endif


typedef struct {
  struct {
    void *address;
    uint32_t flags;
  } instruction[ICPLB_COUNT];
  struct {
    void *address;
    uint32_t flags;
  } data[DCPLB_COUNT];
} bfin_mmu_config_t;


void bfin_mmu_init(bfin_mmu_config_t *config);


#ifdef __cplusplus
}
#endif

#endif /* _mmu_h_ */