Server IP : 127.0.0.2 / Your IP : 52.15.123.168 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,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,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/4.4.0-1084-aws/build/include/linux/ |
Upload File : |
/* * Header for the SUDMAC driver * * Copyright (C) 2013 Renesas Solutions Corp. * * This is free software; you can redistribute it and/or modify * it under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. */ #ifndef SUDMAC_H #define SUDMAC_H #include <linux/dmaengine.h> #include <linux/shdma-base.h> #include <linux/types.h> /* Used by slave DMA clients to request DMA to/from a specific peripheral */ struct sudmac_slave { struct shdma_slave shdma_slave; /* Set by the platform */ }; /* * Supplied by platforms to specify, how a DMA channel has to be configured for * a certain peripheral */ struct sudmac_slave_config { int slave_id; }; struct sudmac_channel { unsigned long offset; unsigned long config; unsigned long wait; /* The configuable range is 0 to 3 */ unsigned long dint_end_bit; }; struct sudmac_pdata { const struct sudmac_slave_config *slave; int slave_num; const struct sudmac_channel *channel; int channel_num; }; /* Definitions for the sudmac_channel.config */ #define SUDMAC_TX_BUFFER_MODE BIT(0) #define SUDMAC_RX_END_MODE BIT(1) /* Definitions for the sudmac_channel.dint_end_bit */ #define SUDMAC_DMA_BIT_CH0 BIT(0) #define SUDMAC_DMA_BIT_CH1 BIT(1) #endif