Server IP : 104.21.38.3 / Your IP : 172.70.92.247 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/include/linux/mfd/da9062/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2015-2017 Dialog Semiconductor */ #ifndef __MFD_DA9062_CORE_H__ #define __MFD_DA9062_CORE_H__ #include <linux/interrupt.h> #include <linux/mfd/da9062/registers.h> enum da9062_compatible_types { COMPAT_TYPE_DA9061 = 1, COMPAT_TYPE_DA9062, }; enum da9061_irqs { /* IRQ A */ DA9061_IRQ_ONKEY, DA9061_IRQ_WDG_WARN, DA9061_IRQ_SEQ_RDY, /* IRQ B*/ DA9061_IRQ_TEMP, DA9061_IRQ_LDO_LIM, DA9061_IRQ_DVC_RDY, DA9061_IRQ_VDD_WARN, /* IRQ C */ DA9061_IRQ_GPI0, DA9061_IRQ_GPI1, DA9061_IRQ_GPI2, DA9061_IRQ_GPI3, DA9061_IRQ_GPI4, DA9061_NUM_IRQ, }; enum da9062_irqs { /* IRQ A */ DA9062_IRQ_ONKEY, DA9062_IRQ_ALARM, DA9062_IRQ_TICK, DA9062_IRQ_WDG_WARN, DA9062_IRQ_SEQ_RDY, /* IRQ B*/ DA9062_IRQ_TEMP, DA9062_IRQ_LDO_LIM, DA9062_IRQ_DVC_RDY, DA9062_IRQ_VDD_WARN, /* IRQ C */ DA9062_IRQ_GPI0, DA9062_IRQ_GPI1, DA9062_IRQ_GPI2, DA9062_IRQ_GPI3, DA9062_IRQ_GPI4, DA9062_NUM_IRQ, }; struct da9062 { struct device *dev; struct regmap *regmap; struct regmap_irq_chip_data *regmap_irq; enum da9062_compatible_types chip_type; }; #endif /* __MFD_DA9062_CORE_H__ */