summaryrefslogtreecommitdiffstats
path: root/target/linux/realtek/files/drivers/usb/dwc_otg/test
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/realtek/files/drivers/usb/dwc_otg/test')
-rw-r--r--target/linux/realtek/files/drivers/usb/dwc_otg/test/Makefile16
-rw-r--r--target/linux/realtek/files/drivers/usb/dwc_otg/test/dwc_otg_test.pm337
-rw-r--r--target/linux/realtek/files/drivers/usb/dwc_otg/test/test_mod_param.pl133
-rw-r--r--target/linux/realtek/files/drivers/usb/dwc_otg/test/test_sysfs.pl193
4 files changed, 679 insertions, 0 deletions
diff --git a/target/linux/realtek/files/drivers/usb/dwc_otg/test/Makefile b/target/linux/realtek/files/drivers/usb/dwc_otg/test/Makefile
new file mode 100644
index 000000000..fc453759d
--- /dev/null
+++ b/target/linux/realtek/files/drivers/usb/dwc_otg/test/Makefile
@@ -0,0 +1,16 @@
+
+PERL=/usr/bin/perl
+PL_TESTS=test_sysfs.pl test_mod_param.pl
+
+.PHONY : test
+test : perl_tests
+
+perl_tests :
+ @echo
+ @echo Running perl tests
+ @for test in $(PL_TESTS); do \
+ if $(PERL) ./$$test ; then \
+ echo "=======> $$test, PASSED" ; \
+ else echo "=======> $$test, FAILED" ; \
+ fi \
+ done
diff --git a/target/linux/realtek/files/drivers/usb/dwc_otg/test/dwc_otg_test.pm b/target/linux/realtek/files/drivers/usb/dwc_otg/test/dwc_otg_test.pm
new file mode 100644
index 000000000..233b04ad8
--- /dev/null
+++ b/target/linux/realtek/files/drivers/usb/dwc_otg/test/dwc_otg_test.pm
@@ -0,0 +1,337 @@
+package dwc_otg_test;
+
+use strict;
+use Exporter ();
+
+use vars qw(@ISA @EXPORT
+$sysfsdir $paramdir $errors $params
+);
+
+@ISA = qw(Exporter);
+
+#
+# Globals
+#
+$sysfsdir = "/sys/devices/lm0";
+$paramdir = "/sys/module/dwc_otg";
+$errors = 0;
+
+$params = [
+ {
+ NAME => "otg_cap",
+ DEFAULT => 0,
+ ENUM => [],
+ LOW => 0,
+ HIGH => 2
+ },
+ {
+ NAME => "dma_enable",
+ DEFAULT => 0,
+ ENUM => [],
+ LOW => 0,
+ HIGH => 1
+ },
+ {
+ NAME => "dma_burst_size",
+ DEFAULT => 32,
+ ENUM => [1, 4, 8, 16, 32, 64, 128, 256],
+ LOW => 1,
+ HIGH => 256
+ },
+ {
+ NAME => "host_speed",
+ DEFAULT => 0,
+ ENUM => [],
+ LOW => 0,
+ HIGH => 1
+ },
+ {
+ NAME => "host_support_fs_ls_low_power",
+ DEFAULT => 0,
+ ENUM => [],
+ LOW => 0,
+ HIGH => 1
+ },
+ {
+ NAME => "host_ls_low_power_phy_clk",
+ DEFAULT => 0,
+ ENUM => [],
+ LOW => 0,
+ HIGH => 1
+ },
+ {
+ NAME => "dev_speed",
+ DEFAULT => 0,
+ ENUM => [],
+ LOW => 0,
+ HIGH => 1
+ },
+ {
+ NAME => "enable_dynamic_fifo",
+ DEFAULT => 1,
+ ENUM => [],
+ LOW => 0,
+ HIGH => 1
+ },
+ {
+ NAME => "data_fifo_size",
+ DEFAULT => 8192,
+ ENUM => [],
+ LOW => 32,
+ HIGH => 32768
+ },
+ {
+ NAME => "dev_rx_fifo_size",
+ DEFAULT => 1064,
+ ENUM => [],
+ LOW => 16,
+ HIGH => 32768
+ },
+ {
+ NAME => "dev_nperio_tx_fifo_size",
+ DEFAULT => 1024,
+ ENUM => [],
+ LOW => 16,
+ HIGH => 32768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_1",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_2",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_3",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_4",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_5",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_6",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_7",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_8",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_9",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_10",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_11",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_12",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_13",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_14",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "dev_perio_tx_fifo_size_15",
+ DEFAULT => 256,
+ ENUM => [],
+ LOW => 4,
+ HIGH => 768
+ },
+ {
+ NAME => "host_rx_fifo_size",
+ DEFAULT => 1024,
+ ENUM => [],
+ LOW => 16,
+ HIGH => 32768
+ },
+ {
+ NAME => "host_nperio_tx_fifo_size",
+ DEFAULT => 1024,
+ ENUM => [],
+ LOW => 16,
+ HIGH => 32768
+ },
+ {
+ NAME => "host_perio_tx_fifo_size",
+ DEFAULT => 1024,
+ ENUM => [],
+ LOW => 16,
+ HIGH => 32768
+ },
+ {
+ NAME => "max_transfer_size",
+ DEFAULT => 65535,
+ ENUM => [],
+ LOW => 2047,
+ HIGH => 65535
+ },
+ {
+ NAME => "max_packet_count",
+ DEFAULT => 511,
+ ENUM => [],
+ LOW => 15,
+ HIGH => 511
+ },
+ {
+ NAME => "host_channels",
+ DEFAULT => 12,
+ ENUM => [],
+ LOW => 1,
+ HIGH => 16
+ },
+ {
+ NAME => "dev_endpoints",
+ DEFAULT => 6,
+ ENUM => [],
+ LOW => 1,
+ HIGH => 15
+ },
+ {
+ NAME => "phy_type",
+ DEFAULT => 1,
+ ENUM => [],
+ LOW => 0,
+ HIGH => 2
+ },
+ {
+ NAME => "phy_utmi_width",
+ DEFAULT => 16,
+ ENUM => [8, 16],
+ LOW => 8,
+ HIGH => 16
+ },
+ {
+ NAME => "phy_ulpi_ddr",
+ DEFAULT => 0,
+ ENUM => [],
+ LOW => 0,
+ HIGH => 1
+ },
+ ];
+
+
+#
+#
+sub check_arch {
+ $_ = `uname -m`;
+ chomp;
+ unless (m/armv4tl/) {
+ warn "# \n# Can't execute on $_. Run on integrator platform.\n# \n";
+ return 0;
+ }
+ return 1;
+}
+
+#
+#
+sub load_module {
+ my $params = shift;
+ print "\nRemoving Module\n";
+ system "rmmod dwc_otg";
+ print "Loading Module\n";
+ if ($params ne "") {
+ print "Module Parameters: $params\n";
+ }
+ if (system("modprobe dwc_otg $params")) {
+ warn "Unable to load module\n";
+ return 0;
+ }
+ return 1;
+}
+
+#
+#
+sub test_status {
+ my $arg = shift;
+
+ print "\n";
+
+ if (defined $arg) {
+ warn "WARNING: $arg\n";
+ }
+
+ if ($errors > 0) {
+ warn "TEST FAILED with $errors errors\n";
+ return 0;
+ } else {
+ print "TEST PASSED\n";
+ return 0 if (defined $arg);
+ }
+ return 1;
+}
+
+#
+#
+@EXPORT = qw(
+$sysfsdir
+$paramdir
+$params
+$errors
+check_arch
+load_module
+test_status
+);
+
+1;
diff --git a/target/linux/realtek/files/drivers/usb/dwc_otg/test/test_mod_param.pl b/target/linux/realtek/files/drivers/usb/dwc_otg/test/test_mod_param.pl
new file mode 100644
index 000000000..e887dce5b
--- /dev/null
+++ b/target/linux/realtek/files/drivers/usb/dwc_otg/test/test_mod_param.pl
@@ -0,0 +1,133 @@
+#!/usr/bin/perl -w
+#
+# Run this program on the integrator.
+#
+# - Tests module parameter default values.
+# - Tests setting of valid module parameter values via modprobe.
+# - Tests invalid module parameter values.
+# -----------------------------------------------------------------------------
+use strict;
+use dwc_otg_test;
+
+check_arch() or die;
+
+#
+#
+sub test {
+ my ($param,$expected) = @_;
+ my $value = get($param);
+
+ if ($value == $expected) {
+ print "$param = $value, okay\n";
+ }
+
+ else {
+ warn "ERROR: value of $param != $expected, $value\n";
+ $errors ++;
+ }
+}
+
+#
+#
+sub get {
+ my $param = shift;
+ my $tmp = `cat $paramdir/$param`;
+ chomp $tmp;
+ return $tmp;
+}
+
+#
+#
+sub test_main {
+
+ print "\nTesting Module Parameters\n";
+
+ load_module("") or die;
+
+ # Test initial values
+ print "\nTesting Default Values\n";
+ foreach (@{$params}) {
+ test ($_->{NAME}, $_->{DEFAULT});
+ }
+
+ # Test low value
+ print "\nTesting Low Value\n";
+ my $cmd_params = "";
+ foreach (@{$params}) {
+ $cmd_params = $cmd_params . "$_->{NAME}=$_->{LOW} ";
+ }
+ load_module($cmd_params) or die;
+
+ foreach (@{$params}) {
+ test ($_->{NAME}, $_->{LOW});
+ }
+
+ # Test high value
+ print "\nTesting High Value\n";
+ $cmd_params = "";
+ foreach (@{$params}) {
+ $cmd_params = $cmd_params . "$_->{NAME}=$_->{HIGH} ";
+ }
+ load_module($cmd_params) or die;
+
+ foreach (@{$params}) {
+ test ($_->{NAME}, $_->{HIGH});
+ }
+
+ # Test Enum
+ print "\nTesting Enumerated\n";
+ foreach (@{$params}) {
+ if (defined $_->{ENUM}) {
+ my $value;
+ foreach $value (@{$_->{ENUM}}) {
+ $cmd_params = "$_->{NAME}=$value";
+ load_module($cmd_params) or die;
+ test ($_->{NAME}, $value);
+ }
+ }
+ }
+
+ # Test Invalid Values
+ print "\nTesting Invalid Values\n";
+ $cmd_params = "";
+ foreach (@{$params}) {
+ $cmd_params = $cmd_params . sprintf "$_->{NAME}=%d ", $_->{LOW}-1;
+ }
+ load_module($cmd_params) or die;
+
+ foreach (@{$params}) {
+ test ($_->{NAME}, $_->{DEFAULT});
+ }
+
+ $cmd_params = "";
+ foreach (@{$params}) {
+ $cmd_params = $cmd_params . sprintf "$_->{NAME}=%d ", $_->{HIGH}+1;
+ }
+ load_module($cmd_params) or die;
+
+ foreach (@{$params}) {
+ test ($_->{NAME}, $_->{DEFAULT});
+ }
+
+ print "\nTesting Enumerated\n";
+ foreach (@{$params}) {
+ if (defined $_->{ENUM}) {
+ my $value;
+ foreach $value (@{$_->{ENUM}}) {
+ $value = $value + 1;
+ $cmd_params = "$_->{NAME}=$value";
+ load_module($cmd_params) or die;
+ test ($_->{NAME}, $_->{DEFAULT});
+ $value = $value - 2;
+ $cmd_params = "$_->{NAME}=$value";
+ load_module($cmd_params) or die;
+ test ($_->{NAME}, $_->{DEFAULT});
+ }
+ }
+ }
+
+ test_status() or die;
+}
+
+test_main();
+0;
diff --git a/target/linux/realtek/files/drivers/usb/dwc_otg/test/test_sysfs.pl b/target/linux/realtek/files/drivers/usb/dwc_otg/test/test_sysfs.pl
new file mode 100644
index 000000000..abcf284fe
--- /dev/null
+++ b/target/linux/realtek/files/drivers/usb/dwc_otg/test/test_sysfs.pl
@@ -0,0 +1,193 @@
+#!/usr/bin/perl -w
+#
+# Run this program on the integrator
+# - Tests select sysfs attributes.
+# - Todo ... test more attributes, hnp/srp, buspower/bussuspend, etc.
+# -----------------------------------------------------------------------------
+use strict;
+use dwc_otg_test;
+
+check_arch() or die;
+
+#
+#
+sub test {
+ my ($attr,$expected) = @_;
+ my $string = get($attr);
+
+ if ($string eq $expected) {
+ printf("$attr = $string, okay\n");
+ }
+ else {
+ warn "ERROR: value of $attr != $expected, $string\n";
+ $errors ++;
+ }
+}
+
+#
+#
+sub set {
+ my ($reg, $value) = @_;
+ system "echo $value > $sysfsdir/$reg";
+}
+
+#
+#
+sub get {
+ my $attr = shift;
+ my $string = `cat $sysfsdir/$attr`;
+ chomp $string;
+ if ($string =~ m/\s\=\s/) {
+ my $tmp;
+ ($tmp, $string) = split /\s=\s/, $string;
+ }
+ return $string;
+}
+
+#
+#
+sub test_main {
+ print("\nTesting Sysfs Attributes\n");
+
+ load_module("") or die;
+
+ # Test initial values of regoffset/regvalue/guid/gsnpsid
+ print("\nTesting Default Values\n");
+
+ test("regoffset", "0xffffffff");
+ test("regvalue", "invalid offset");
+ test("guid", "0x12345678"); # this will fail if it has been changed
+ test("gsnpsid", "0x4f54200a");
+
+ # Test operation of regoffset/regvalue
+ print("\nTesting regoffset\n");
+ set('regoffset', '5a5a5a5a');
+ test("regoffset", "0xffffffff");
+
+ set('regoffset', '0');
+ test("regoffset", "0x00000000");
+
+ set('regoffset', '40000');
+ test("regoffset", "0x00000000");
+
+ set('regoffset', '3ffff');
+ test("regoffset", "0x0003ffff");
+
+ set('regoffset', '1');
+ test("regoffset", "0x00000001");
+
+ print("\nTesting regvalue\n");
+ set('regoffset', '3c');
+ test("regvalue", "0x12345678");
+ set('regvalue', '5a5a5a5a');
+ test("regvalue", "0x5a5a5a5a");
+ set('regvalue','a5a5a5a5');
+ test("regvalue", "0xa5a5a5a5");
+ set('guid','12345678');
+
+ # Test HNP Capable
+ print("\nTesting HNP Capable bit\n");
+ set('hnpcapable', '1');
+ test("hnpcapable", "0x1");
+ set('hnpcapable','0');
+ test("hnpcapable", "0x0");
+
+ set('regoffset','0c');
+
+ my $old = get('gusbcfg');
+ print("setting hnpcapable\n");
+ set('hnpcapable', '1');
+ test("hnpcapable", "0x1");
+ test('gusbcfg', sprintf "0x%08x", (oct ($old) | (1<<9)));
+ test('regvalue', sprintf "0x%08x", (oct ($old) | (1<<9)));
+
+ $old = get('gusbcfg');
+ print("clearing hnpcapable\n");
+ set('hnpcapable', '0');
+ test("hnpcapable", "0x0");
+ test ('gusbcfg', sprintf "0x%08x", oct ($old) & (~(1<<9)));
+ test ('regvalue', sprintf "0x%08x", oct ($old) & (~(1<<9)));
+
+ # Test SRP Capable
+ print("\nTesting SRP Capable bit\n");
+ set('srpcapable', '1');
+ test("srpcapable", "0x1");
+ set('srpcapable','0');
+ test("srpcapable", "0x0");
+
+ set('regoffset','0c');
+
+ $old = get('gusbcfg');
+ print("setting srpcapable\n");
+ set('srpcapable', '1');
+ test("srpcapable", "0x1");
+ test('gusbcfg', sprintf "0x%08x", (oct ($old) | (1<<8)));
+ test('regvalue', sprintf "0x%08x", (oct ($old) | (1<<8)));
+
+ $old = get('gusbcfg');
+ print("clearing srpcapable\n");
+ set('srpcapable', '0');
+ test("srpcapable", "0x0");
+ test('gusbcfg', sprintf "0x%08x", oct ($old) & (~(1<<8)));
+ test('regvalue', sprintf "0x%08x", oct ($old) & (~(1<<8)));
+
+ # Test GGPIO
+ print("\nTesting GGPIO\n");
+ set('ggpio','5a5a5a5a');
+ test('ggpio','0x5a5a0000');
+ set('ggpio','a5a5a5a5');
+ test('ggpio','0xa5a50000');
+ set('ggpio','11110000');
+ test('ggpio','0x11110000');
+ set('ggpio','00001111');
+ test('ggpio','0x00000000');
+
+ # Test DEVSPEED
+ print("\nTesting DEVSPEED\n");
+ set('regoffset','800');
+ $old = get('regvalue');
+ set('devspeed','0');
+ test('devspeed','0x0');
+ test('regvalue',sprintf("0x%08x", oct($old) & ~(0x3)));
+ set('devspeed','1');
+ test('devspeed','0x1');
+ test('regvalue',sprintf("0x%08x", oct($old) & ~(0x3) | 1));
+ set('devspeed','2');
+ test('devspeed','0x2');
+ test('regvalue',sprintf("0x%08x", oct($old) & ~(0x3) | 2));
+ set('devspeed','3');
+ test('devspeed','0x3');
+ test('regvalue',sprintf("0x%08x", oct($old) & ~(0x3) | 3));
+ set('devspeed','4');
+ test('devspeed','0x0');
+ test('regvalue',sprintf("0x%08x", oct($old) & ~(0x3)));
+ set('devspeed','5');
+ test('devspeed','0x1');
+ test('regvalue',sprintf("0x%08x", oct($old) & ~(0x3) | 1));
+
+
+ # mode Returns the current mode:0 for device mode1 for host mode Read
+ # hnp Initiate the Host Negotiation Protocol. Read returns the status. Read/Write
+ # srp Initiate the Session Request Protocol. Read returns the status. Read/Write
+ # buspower Get or Set the Power State of the bus (0 - Off or 1 - On) Read/Write
+ # bussuspend Suspend the USB bus. Read/Write
+ # busconnected Get the connection status of the bus Read
+
+ # gotgctl Get or set the Core Control Status Register. Read/Write
+ ## gusbcfg Get or set the Core USB Configuration Register Read/Write
+ # grxfsiz Get or set the Receive FIFO Size Register Read/Write
+ # gnptxfsiz Get or set the non-periodic Transmit Size Register Read/Write
+ # gpvndctl Get or set the PHY Vendor Control Register Read/Write
+ ## ggpio Get the value in the lower 16-bits of the General Purpose IO Register or Set the upper 16 bits. Read/Write
+ ## guid Get or set the value of the User ID Register Read/Write
+ ## gsnpsid Get the value of the Synopsys ID Regester Read
+ ## devspeed Get or set the device speed setting in the DCFG register Read/Write
+ # enumspeed Gets the device enumeration Speed. Read
+ # hptxfsiz Get the value of the Host Periodic Transmit FIFO Read
+ # hprt0 Get or Set the value in the Host Port Control and Status Register Read/Write
+
+ test_status("TEST NYI") or die;
+}
+
+test_main();
+0;