????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.188.149.194 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-3.13.0-35/arch/blackfin/include/asm/ |
Upload File : |
/* * bfin_sport.h - interface to Blackfin SPORTs * * Copyright 2004-2009 Analog Devices Inc. * * Licensed under the GPL-2 or later. */ #ifndef __BFIN_SPORT_H__ #define __BFIN_SPORT_H__ #include <linux/types.h> #include <uapi/asm/bfin_sport.h> /* * All Blackfin system MMRs are padded to 32bits even if the register * itself is only 16bits. So use a helper macro to streamline this. */ #define __BFP(m) u16 m; u16 __pad_##m struct sport_register { __BFP(tcr1); __BFP(tcr2); __BFP(tclkdiv); __BFP(tfsdiv); union { u32 tx32; u16 tx16; }; u32 __pad_tx; union { u32 rx32; /* use the anomaly wrapper below */ u16 rx16; }; u32 __pad_rx; __BFP(rcr1); __BFP(rcr2); __BFP(rclkdiv); __BFP(rfsdiv); __BFP(stat); __BFP(chnl); __BFP(mcmc1); __BFP(mcmc2); u32 mtcs0; u32 mtcs1; u32 mtcs2; u32 mtcs3; u32 mrcs0; u32 mrcs1; u32 mrcs2; u32 mrcs3; }; #undef __BFP struct bfin_snd_platform_data { const unsigned short *pin_req; }; #define bfin_read_sport_rx32(base) \ ({ \ struct sport_register *__mmrs = (void *)base; \ u32 __ret; \ unsigned long flags; \ if (ANOMALY_05000473) \ local_irq_save(flags); \ __ret = __mmrs->rx32; \ if (ANOMALY_05000473) \ local_irq_restore(flags); \ __ret; \ }) #endif