source: rtems/c/src/lib/libbsp/bfin/TLL6527M/include/cplb.h @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*  cplb.h
2 * 
3 *  Copyright (c) 2006 by Atos Automacao Industrial Ltda.
4 *             written by Alain Schaefer <alain.schaefer@easc.ch>
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.rtems.com/license/LICENSE.
9 */
10#ifndef _CPLB_H
11#define _CPLB_H
12
13/* CPLB configurations */
14#define CPLB_DEF_CACHE_WT       CPLB_L1_CHBL | CPLB_WT
15#define CPLB_DEF_CACHE_WB       CPLB_L1_CHBL
16#define CPLB_CACHE_ENABLED      CPLB_L1_CHBL | CPLB_DIRTY
17
18#define CPLB_DEF_CACHE          CPLB_L1_CHBL | CPLB_WT
19#define CPLB_ALL_ACCESS CPLB_SUPV_WR | CPLB_USER_RD | CPLB_USER_WR
20
21#define CPLB_I_PAGE_MGMT        CPLB_LOCK | CPLB_VALID
22#define CPLB_D_PAGE_MGMT        CPLB_LOCK | CPLB_ALL_ACCESS | CPLB_VALID
23
24#define CPLB_DNOCACHE           CPLB_ALL_ACCESS | CPLB_VALID
25#define CPLB_DDOCACHE           CPLB_DNOCACHE | CPLB_DEF_CACHE
26#define CPLB_INOCACHE           CPLB_USER_RD | CPLB_VALID
27#define CPLB_IDOCACHE           CPLB_INOCACHE | CPLB_L1_CHBL
28
29#define CPLB_DDOCACHE_WT        CPLB_DNOCACHE | CPLB_DEF_CACHE_WT
30#define CPLB_DDOCACHE_WB        CPLB_DNOCACHE | CPLB_DEF_CACHE_WB
31
32#endif /* _CPLB_H */
Note: See TracBrowser for help on using the repository browser.