File tree 2 files changed +19
-0
lines changed
2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,23 @@ def __init__(self):
100
100
"i2c" ,
101
101
})
102
102
103
+ # alinx support -------------------------------------------------------------------------------------
104
+
105
+ class Ax7020 (Board ):
106
+ def __init__ (self ):
107
+ from litex_boards .targets import alinx_ax7020
108
+ Board .__init__ (self , alinx_ax7020 .BaseSoC , soc_capabilities = {
109
+ # Communication
110
+ "serial" ,
111
+ #"ethernet",
112
+ # Storage
113
+ #"sdcard",
114
+ # GPIOs
115
+ "leds" ,
116
+ "buttons" ,
117
+ "ps_ddr" ,
118
+ })
119
+
103
120
# NeTV2 support ------------------------------------------------------------------------------------
104
121
105
122
class NeTV2 (Board ):
Original file line number Diff line number Diff line change @@ -122,6 +122,8 @@ def main():
122
122
soc_kwargs .update (with_video_framebuffer = True )
123
123
if "usb_host" in board .soc_capabilities :
124
124
soc_kwargs .update (with_usb_host = True )
125
+ if "ps_ddr" in board .soc_capabilities :
126
+ soc_kwargs .update (with_ps_ddr = True )
125
127
126
128
# SoC creation -----------------------------------------------------------------------------
127
129
soc = SoCLinux (board .soc_cls , ** soc_kwargs )
You can’t perform that action at this time.
0 commit comments