![]() |
Pinebook SDIO gpio control using SD card slot blog post - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: Pinebook (https://forum.pine64.org/forumdisplay.php?fid=76) +--- Forum: Pinebook Hardware and Accessories (https://forum.pine64.org/forumdisplay.php?fid=80) +--- Thread: Pinebook SDIO gpio control using SD card slot blog post (/showthread.php?tid=4785) Pages:
1
2
|
Pinebook SDIO gpio control using SD card slot blog post - MarkHaysHarris777 - 07-20-2017 This is my first experiment with bringing some of the A64 gpio mux lines to the outside via the SD card slot; SDIO. These are data lines D0-D3, CMD, CLK, VDD, & VSS. The lines are gpio160 - gpio166; PF0 - PF6. The pic above is the 48cm ribbon cable that extends the SD micro slot to a full size card adapter; this ribbon is useful in itself; but I plan to modify it for pin access on a solderable bread-board. These two shots are the modified ribbon cable; this was actually easier than I expected. The cable will extend under the notebook. The two shots above show the finished cable running; I have the green and red LED(s) initially connected to CMD and CLK. These are pulsing at regular 3/4 second intervals (or so). The gpio(s) are not useful in this state; next I need to hack the dts and make sure that the pin function register has '0' s. Please see this important link: RE: Pinebook SDIO gpio control using SD card slot blog post - tllim - 07-21-2017 (07-20-2017, 04:56 PM)MarkHaysHarris777 Wrote: This is my first experiment with bringing some of the A64 gpio mux lines to the outside via the SD card slot; SDIO. These are data lines D0-D3, CMD, CLK, VDD, & VSS. The lines are gpio160 - gpio166; PF0 - PF6. Awesome RE: Pinebook SDIO gpio control using SD card slot blog post - MarkHaysHarris777 - 07-22-2017 This post is just to document the placement of the pins on my breakout with the extender; the Sparkfun breakout board ( coming soon ) has a slightly different layout. Code: Pin SD SPI Note: Vss in the pic above (ground) is normally the third pin up from the bottom, between D0 and CLK. I moved Vss physically to create two logical groups of three pins PF0-2 and PF3-5; this also allows for good separation between Vdd and Vss. Note: See schematic pp 9; T-card/USB RE: Pinebook SDIO gpio control using SD card slot blog post - MarkHaysHarris777 - 07-22-2017 The above pics are option (2); the model from Sparkfun is a little more expensive, but arrived in two days. The Chinese version will be here in 30 days from Shenzhen (if I'm lucky with customs). These plug directly into the micro SD slot (although its a little tricky, I did have to use the dremel tool). The layout is similar but different; in this model the Vss and Vdd are together in the center. Again, we have tapped the gpio(s) after mounting header pins on the sniffer card; the sniffer card is designed to be a logic test point for logic analyzer. I won't be pushing an SD card in the slot but will experiment with the gpio(s) using this direct interface. Note: pin (CD) is card-detect ; also D3. RE: Pinebook SDIO gpio control using SD card slot blog post - MarkHaysHarris777 - 07-22-2017 By disabling the sdmmc for sdc0, and setting sdc0 to function gpio_in, muxsel 0x0, drive 0x0, (pinctrl and bindings) I have been able to set gpio160 - gpio165 ( PF0 - PF5 ) to ON | OFF with the sysfs method: echo 160 > export echo out > gpio160/direction echo 1 > gpio160/value echo 0 > gpio160/value After bootup the gpio(s) were in default input (cmd and clk no longer strobing); all six gpio(s) were successfully exported, defined, and set ON|OFF. In the left pic above the right LED is Vdd monitor while the left LED is monitoring gpio160 which has just been set ON. In the right pic the gpio160 has been set OFF; Vdd still indicating 3v3 rail. Note: the dts|dtb is static atm; will want to configure so that uEnv.txt controls dtb "on-the-fly" via variable. Note: the SD card slot can be raw gpio(s) ; or SD card external storage ; or SPI (jtag, other) Note: All of this assumes ofc that the pinebook is booted via eMMC; SD card slot is disabled for external storage Note: option (2) sniffer adapter is less than expected; sloppy in the slot and difficult to control; the card needs to be just a tad thicker, and the latching mechanism needs to be better defined; may have to make our own cards ! RE: Pinebook SDIO gpio control using SD card slot blog post - MarkHaysHarris777 - 07-23-2017 The purpose of this post is to document the changes I made to the dts; these changes are experimental and may not be entirely correct. Do not copy these changes; or do so at your own risk. These changes are static (I recompiled the dtb and the changes do not modify on-the-fly). The dts is decompiled from the ayufan image 0.7.3 using dtc device-tree-compiler. I made three sets of changes; each will be listed in its own code block with line numbers. Essentially the changes disable the sdmmc for @sdc0 and set the bindings (may not be correct) for @sdc0 gpio(s) PF0 - PF5. The changes are listed in the order they appear in the source: When I make changes to my experimental dts, I will update these code blocks to reflect the most recent revision; the following is the second revision. [change 1] Code: [old source 1] [change 2] Code: [old source 2] [change 3] Code: [old source 3] Note: Line numbers following [new change X] indicate specific changed lines. Note: The original source may be compared with the changed source in each code block. RE: Pinebook SDIO gpio control using SD card slot blog post - MarkHaysHarris777 - 07-23-2017 My first clue that the bindings may not be entirely correct is that inputs with active_low=1 don't work. By default when I setup an input (used PF4 and PF5) then active_low=0 ; which means the default state of the pin is zero and it becomes active 'high'; this works ! Set the pin to 3v3 and its value becomes 1. On the other hand, if I set active_low=1 then the input pin does not work; its value remains default '1' regardless of grounding the pin ( setting it to low zero ). So, I suspect I need to revisit 'pull' and 'drive' and fix whatever I don't understand there. Note: ofc an external pullup of 56K ohms works fine to invert the behavior of the input Note: regardless, we have both input and output working with gpio block @sdc0 ( PF0 - PF5 ) gpio160 - gpio165. Note: need to make the dts generic ; and get the C and Python routines working. RE: Pinebook SDIO gpio control using SD card slot blog post - tllim - 07-23-2017 Thanks on the GPIO over SD slot post. Now the Pinebook also has GPIO access :-) RE: Pinebook SDIO gpio control using SD card slot blog post - dkryder - 07-23-2017 (07-22-2017, 02:02 PM)MarkHaysHarris777 Wrote: hi, good thread. wanted to mention that sparkfun also has this sd card sniffer. https://www.sparkfun.com/products/11468 also, if you are not aware some vendors will also ship from hong kong by request. i have been getting hk stuff much faster. RE: Pinebook SDIO gpio control using SD card slot blog post - MarkHaysHarris777 - 08-15-2017 (07-22-2017, 02:02 PM)MarkHaysHarris777 Wrote: hi again, well, the RED card options ( microSD Sniffer , see post #4) one from Sparkfun , and one from the market in Shenzhen are a bust; the model from Shenzhen does not work at all ( way too thick ) and the one from Sparkfun is loose and sloopy ( although it does work ) because its way too thin. The card must be the same size and shape as the micro SD card ; doh. Specifically the card must not be any thicker than .75mm and the one from Shenzhen is 1.0mm, the one from Sparkfun is less than .50mm. If I am very careful I can make the Sparkfun model work; but what a pain. So, I'm down to using only the microSD extension cables, which work very well. There are many vendors for this card; I plan to try to make my own card and not waste any more money are cheap gimmicks. |