[DM/FEATURE] Support MFD syscon

MFD (Multifunction device) with System Controller Register Read/Write.

Signed-off-by: GuEe-GUI <2991707448@qq.com>
This commit is contained in:
GuEe-GUI
2024-11-20 15:53:23 +08:00
committed by Rbb666
parent f5aca55a26
commit 10cac76d3b
6 changed files with 311 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
from building import *
group = []
if not GetDepend(['RT_USING_MFD']):
Return('group')
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include']
src = []
if GetDepend(['RT_MFD_SYSCON']):
src += ['mfd-syscon.c']
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')