aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'am57xx_generate_pin_config_data.pl')
-rwxr-xr-xam57xx_generate_pin_config_data.pl12
1 files changed, 12 insertions, 0 deletions
diff --git a/am57xx_generate_pin_config_data.pl b/am57xx_generate_pin_config_data.pl
index a3b52a5..9f04c29 100755
--- a/am57xx_generate_pin_config_data.pl
+++ b/am57xx_generate_pin_config_data.pl
@@ -226,12 +226,24 @@ sub operation_tiuboot2014_iopad()
226 $val_pull = "PIN_INPUT"; 226 $val_pull = "PIN_INPUT";
227 } elsif ( $compare_hex =~ /0x00060000/ ) { 227 } elsif ( $compare_hex =~ /0x00060000/ ) {
228 $val_pull = "PIN_INPUT_PULLUP"; 228 $val_pull = "PIN_INPUT_PULLUP";
229 } elsif ( $compare_hex =~ /0x00070000/ ) {
230 $val_pull = "PIN_INPUT";
229 } elsif ( $compare_hex =~ /0x00080000/ ) { 231 } elsif ( $compare_hex =~ /0x00080000/ ) {
230 $val_pull = "PIN_OUTPUT_PULLDOWN | SLEWCONTROL"; 232 $val_pull = "PIN_OUTPUT_PULLDOWN | SLEWCONTROL";
233 } elsif ( $compare_hex =~ /0x00090000/ ) {
234 $val_pull = "PIN_OUTPUT | SLEWCONTROL";
235 } elsif ( $compare_hex =~ /0x000a0000/ ) {
236 $val_pull = "PIN_OUTPUT_PULLUP | SLEWCONTROL";
237 } elsif ( $compare_hex =~ /0x000b0000/ ) {
238 $val_pull = "PIN_OUTPUT | SLEWCONTROL";
231 } elsif ( $compare_hex =~ /0x000c0000/ ) { 239 } elsif ( $compare_hex =~ /0x000c0000/ ) {
240 $val_pull = "PIN_INPUT_PULLDOWN | SLEWCONTROL";
241 } elsif ( $compare_hex =~ /0x000d0000/ ) {
232 $val_pull = "PIN_INPUT | SLEWCONTROL"; 242 $val_pull = "PIN_INPUT | SLEWCONTROL";
233 } elsif ( $compare_hex =~ /0x000e0000/ ) { 243 } elsif ( $compare_hex =~ /0x000e0000/ ) {
234 $val_pull = "PIN_INPUT_PULLUP | SLEWCONTROL"; 244 $val_pull = "PIN_INPUT_PULLUP | SLEWCONTROL";
245 } elsif ( $compare_hex =~ /0x000f0000/ ) {
246 $val_pull = "PIN_INPUT | SLEWCONTROL";
235 } 247 }
236 248
237 # Uggh.. unknown definition? 249 # Uggh.. unknown definition?