/* * Common header file for Blackfin family of processors. * * Copyright 2004-2009 Analog Devices Inc. * * Licensed under the GPL-2 or later. */ #ifndef _BLACKFIN_H_ #define _BLACKFIN_H_ #include <mach/anomaly.h> #ifndef __ASSEMBLY__ /* SSYNC implementation for C file */
static inline void SSYNC(void) { int _tmp; if (ANOMALY_05000312 || ANOMALY_05000244) __asm__ __volatile__( "cli %0;" "nop;" "nop;" "nop;" "ssync;" "sti %0;" : "=d" (_tmp) ); else __asm__ __volatile__("ssync;"); }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
bryan wu | bryan wu | 16 | 64.00% | 1 | 33.33% |
mike frysinger | mike frysinger | 7 | 28.00% | 1 | 33.33% |
bob liu | bob liu | 2 | 8.00% | 1 | 33.33% |
Total | 25 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
bryan wu | bryan wu | 16 | 64.00% | 1 | 33.33% |
mike frysinger | mike frysinger | 7 | 28.00% | 1 | 33.33% |
bob liu | bob liu | 2 | 8.00% | 1 | 33.33% |
Total | 25 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
robin getz | robin getz | 53 | 31.93% | 2 | 18.18% |
bryan wu | bryan wu | 53 | 31.93% | 2 | 18.18% |
mike frysinger | mike frysinger | 51 | 30.72% | 5 | 45.45% |
bob liu | bob liu | 9 | 5.42% | 2 | 18.18% |
Total | 166 | 100.00% | 11 | 100.00% |