84132c9d9f
* bfin/Makefile.in: (top_srcdir): Define. (mkinstalldirs): Define. (BOARD_SCRIPTS): Define. (BOARD_LDFLAGS): Define. (BOARD_BSP): Define. (BOARD_CRT0S): Define. (BOARD_OBJS): Define. (BOARD_TEST): Define. (BOARD_INSTALL): Define. (INCLUDES): Add -I$(srcdir)/include. (all): Add ${BOARD_CRT0S} and ${BOARD_BSP}. (.c.S): Remove target. (crt0.o): New target. (basiccrt.o): Likewise. (basiccrtb.o): Likewise. (basiccrts.o): Likewise. (basiccrt561.o, basiccrt561s.o, basiccrt561b.o): Likewise (clean mostlyclean): Remove ${BOARD_BSP}. (install): Depend on ${BOARD_INSTALL}. (install-sim): Reformat. (install-board): New target. * bfin/basiccrt.S: Remove useless __ADSPBF561_COREB__ in workaround code for 05000229. * bfin/syscalls.c (do_syscall): Use `EXCPT 0' instead of `RAISE 0' for syscall. * bfin/basiccrt.S: New file. * bfin/bf5*ld: New file. * bfin/bfin-common-mc.ld: New file. * bfin/bfin-common-sc.ld: New file. * bfin/include/blackfin.h: New file. * bfin/include/cdefBF5*.h: New file. * bfin/include/cdef_LPBlackfin.h: New file. * bfin/include/cdefblackfin.h: New file. * bfin/include/cplb.h: New file. * bfin/include/cplbtab.h: New file. * bfin/include/defBF5*.h: New files. * bfin/include/def_LPBlackfin.h: New files. * bfin/include/defblackfin.h: New file. * bfin/include/sys/_adi_platform.h: New file. * bfin/include/sys/anomaly_macros_rtl.h: New file. * bfin/include/sys/excause.h: New file. * bfin/include/sys/exception.h: New file. * bfin/include/sys/mc_typedef.h: New file. * bfin/include/sys/platform.h: New file. * bfin/include/sys/pll.h: New file. * bfin/include/sysreg.h: New file. * libnosys/configure.in (MISSING_SYSCALL_NAMES): Don't define for bfin. * libnosys/configure: Regenerate.
73 lines
1.9 KiB
C
73 lines
1.9 KiB
C
/*
|
|
* The authors hereby grant permission to use, copy, modify, distribute,
|
|
* and license this software and its documentation for any purpose, provided
|
|
* that existing copyright notices are retained in all copies and that this
|
|
* notice is included verbatim in any distributions. No written agreement,
|
|
* license, or royalty fee is required for any of the authorized uses.
|
|
* Modifications to this software may be copyrighted by their authors
|
|
* and need not follow the licensing terms described here, provided that
|
|
* the new terms are clearly indicated on the first page of each file where
|
|
* they apply.
|
|
*/
|
|
|
|
#pragma once
|
|
#ifndef __NO_BUILTIN
|
|
#pragma system_header /* cplbtab.h */
|
|
#endif
|
|
/************************************************************************
|
|
*
|
|
* cplbtab.h
|
|
*
|
|
* Copyright (C) 2008 Analog Devices, Inc.
|
|
*
|
|
************************************************************************/
|
|
|
|
/* Define structures for the CPLB tables. */
|
|
|
|
#ifndef _CPLBTAB_H
|
|
#define _CPLBTAB_H
|
|
|
|
#include <cplb.h>
|
|
|
|
#ifdef _MISRA_RULES
|
|
#pragma diag(push)
|
|
#pragma diag(suppress:misra_rule_6_3)
|
|
#pragma diag(suppress:misra_rule_8_12)
|
|
#endif /* _MISRA_RULES */
|
|
|
|
typedef struct {
|
|
unsigned long addr;
|
|
unsigned long flags;
|
|
} cplb_entry;
|
|
|
|
extern cplb_entry dcplbs_table[];
|
|
extern cplb_entry icplbs_table[];
|
|
extern int __cplb_ctrl;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void cplb_init(int _enable_cpls_caches);
|
|
int cplb_mgr(int _is_data_miss, int _enable_cache);
|
|
void cplb_hdr(void);
|
|
void cache_invalidate(int _caches);
|
|
void icache_invalidate(void);
|
|
void dcache_invalidate(int _caches);
|
|
void dcache_invalidate_both(void);
|
|
void flush_data_cache(void);
|
|
void flush_data_buffer(void *_start, void *_end, int _invalidate);
|
|
void disable_data_cache(void);
|
|
void enable_data_cache(int _cplb_ctrl);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#ifdef _MISRA_RULES
|
|
#pragma diag(pop)
|
|
#endif /* _MISRA_RULES */
|
|
|
|
#endif /* _CPLBTAB_H */
|
|
|