diff options
author | John Klug <john.klug@multitech.com> | 2022-02-28 16:53:09 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2022-02-28 18:49:44 -0600 |
commit | f0d840d1902b8f09687d253c793bee7ad9624c3f (patch) | |
tree | 722ffb274186e3d54c0dacd05ed59b7e15122603 /README | |
parent | fb1341ca0996b26fc95857a4763e3bc6d94db24d (diff) | |
download | mtac-pulse-f0d840d1902b8f09687d253c793bee7ad9624c3f.tar.gz mtac-pulse-f0d840d1902b8f09687d253c793bee7ad9624c3f.tar.bz2 mtac-pulse-f0d840d1902b8f09687d253c793bee7ad9624c3f.zip |
Diffstat (limited to 'README')
-rw-r--r-- | README | 33 |
1 files changed, 28 insertions, 5 deletions
@@ -6,11 +6,34 @@ This driver requires the mtac.ko driver loaded first. depmod should take care of this. -Documentation for this board is here: +This driver used to attempt to set "open drain" from +the GPIO driver. This is not allowed by the Atmel +GPIO driver. In newer kernels it warns that this +does not work. Open drain must be set by the +Atmel pinctrl driver for Atmel GPIO controllers. -http://www.multitech.net/developer/software/mlinux/using-mlinux/mlinux-using-accessory-cards/mtac-pulse-usage/ +Atmel calls "Open Drain" "MultiDriver". -An init script can look in: -/lib/modules/$(uname -r)/extra/mtac_xdot.ko +The lack of multidrive was verified in +kernel 3.12.70, mLinux 4.1.1 with MTAC-PULSE-BP +in slot AP1. The pin for AP1_NRESET is PB12. +The AP2_NRESET is PB13. -to find the driver. +The device address for PIOB is 0xFFFF F600. +The offset for register PIO_MDSR is 0x58. +PIO_MDSR is Multi-Driver Status Register, and +Multi-Driver is what Atmel calls Open Drain. + + mtcdt:/home/mtadm# devmem2 0xfffff658 * /dev/mem opened. + Memory mapped at address 0xb6f35000. + Read at address 0xFFFFF658 (0xb6f35658): 0x00000000 + +This says that in 4.1.1 mLinux, no outputs for PIOB +are set to multi-driver. + + mtcdt:/sys/devices/platform/mts-io/ap1# cat hw-version + MTAC-PULSE-0.0 + +pinctrl settings must be done in device tree for Atmel +processors when trying to set pull-up, pull-down, or +multi-drive. |