Server IP : 104.21.38.3 / Your IP : 162.158.171.2 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,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,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-5.15.0-142/arch/sh/include/cpu-sh3/cpu/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh3/gpio.h * * Copyright (C) 2007 Markus Brunner, Mark Jonas * * Addresses for the Pin Function Controller */ #ifndef _CPU_SH3_GPIO_H #define _CPU_SH3_GPIO_H #if defined(CONFIG_CPU_SUBTYPE_SH7720) || \ defined(CONFIG_CPU_SUBTYPE_SH7721) /* Control registers */ #define PORT_PACR 0xA4050100UL #define PORT_PBCR 0xA4050102UL #define PORT_PCCR 0xA4050104UL #define PORT_PDCR 0xA4050106UL #define PORT_PECR 0xA4050108UL #define PORT_PFCR 0xA405010AUL #define PORT_PGCR 0xA405010CUL #define PORT_PHCR 0xA405010EUL #define PORT_PJCR 0xA4050110UL #define PORT_PKCR 0xA4050112UL #define PORT_PLCR 0xA4050114UL #define PORT_PMCR 0xA4050116UL #define PORT_PPCR 0xA4050118UL #define PORT_PRCR 0xA405011AUL #define PORT_PSCR 0xA405011CUL #define PORT_PTCR 0xA405011EUL #define PORT_PUCR 0xA4050120UL #define PORT_PVCR 0xA4050122UL /* Data registers */ #define PORT_PADR 0xA4050140UL /* Address of PORT_PBDR is wrong in the datasheet, see errata 2005-09-21 */ #define PORT_PBDR 0xA4050142UL #define PORT_PCDR 0xA4050144UL #define PORT_PDDR 0xA4050146UL #define PORT_PEDR 0xA4050148UL #define PORT_PFDR 0xA405014AUL #define PORT_PGDR 0xA405014CUL #define PORT_PHDR 0xA405014EUL #define PORT_PJDR 0xA4050150UL #define PORT_PKDR 0xA4050152UL #define PORT_PLDR 0xA4050154UL #define PORT_PMDR 0xA4050156UL #define PORT_PPDR 0xA4050158UL #define PORT_PRDR 0xA405015AUL #define PORT_PSDR 0xA405015CUL #define PORT_PTDR 0xA405015EUL #define PORT_PUDR 0xA4050160UL #define PORT_PVDR 0xA4050162UL /* Pin Select Registers */ #define PORT_PSELA 0xA4050124UL #define PORT_PSELB 0xA4050126UL #define PORT_PSELC 0xA4050128UL #define PORT_PSELD 0xA405012AUL #elif defined(CONFIG_CPU_SUBTYPE_SH7709) /* Control registers */ #define PORT_PACR 0xa4000100UL #define PORT_PBCR 0xa4000102UL #define PORT_PCCR 0xa4000104UL #define PORT_PFCR 0xa400010aUL /* Data registers */ #define PORT_PADR 0xa4000120UL #define PORT_PBDR 0xa4000122UL #define PORT_PCDR 0xa4000124UL #define PORT_PFDR 0xa400012aUL #endif #endif