Announcement

Collapse
No announcement yet.

MX6UL Custom Board hangs very near to start OS

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • MX6UL Custom Board hangs very near to start OS

    Dear all , our board its hanging very near to boot

    I have no routed the mechanical SD card detect and it seems to be the problem

    I also patched the DTS with this

    usdhc1 {
    pinctrl-names = "default";
    pinctrl-0 = <&pinctrl_esdhc1>;
    bus-width = <4>;
    broken-cd;
    disable-wp;
    };

    But still fails

    See the video it hangs showing

    Waiting for root device /dev/mmcblk0p2...

    See attached video link

    https://drive.google.com/open?id=0B7...1Y5OGxMbG1iX0k

    Thank you in advance
    Last edited by nachodizz990; 05-13-2017, 04:21 AM.

  • #2
    I am not good with the software at all, but I would be surprised if it's actually a problem with the SD card detect and it can't be fixed in the boot loader.

    Comment


    • #3
      nachodizz990 what I would do, I would find and unconnected CPU pin, set internal pull up/down (whatever you need to tell the software, that card is inserted) and used this pin in the software. But I think, it should be possible to tell software do not use card detect, I just don't know how.

      Does SD work in uBoot? Also, I believe you may need to see the card detected before it tries to mount it and I do not see it in the console output.

      Comment


      • #4
        Yes, Its being detected in Uboot (mmc0 is current device) but after starting to descompress the kernel it fails

        Some NXP Guy told me that it can be that i have no updated the DDR setting with Stress Tool results yet

        But i´m sure its a card detect problem!

        Note that SD will not be the Final storage device (it will be emmc and it works)

        But i´m curious about this

        Boot rom code-> Works, because it uses 1 bit and DAT3 to CD
        Uboot-> Works It also detects sd
        When descompressing kernel -> It Fails!

        It seems to be that Uboot ignores the signal and the kernel not

        I´m getting crazy!

        I´ve made the signal pulldown in pinmuxtool and it still fails

        The MFG TOOL uboot does nOt detect the sd

        Note that the board its booting from sd!

        King Regards


        Last edited by nachodizz990; 05-15-2017, 09:11 AM.

        Comment


        • #5
          Is your SD card correctly configured in device tree? When you are starting kernel you should see something like:

          sdhci: Secure Digital Host Controller Interface driver
          sdhci: Copyright(c) Pierre Ossman
          mmc0: SDHCI controller on platform [sdhci-esdhc-imx.1] using DMA
          mmc1: SDHCI controller on platform [sdhci-esdhc-imx.2] using DMA
          ...and later ...
          mmc0: new high speed SDHC card at address 1234
          mmcblk0: mmc0:1234 SA04G 3.63 GiB
          mmcblk0: p1

          Comment


          • #6
            Ok i will see, anyway, is the same tree of the EVK and it works, but the EVK haves CD routed...

            Comment


            • #7


              Attached you can find the Boot Prompt Now It boots

              There is a curious detail:

              If I connect the USB TTL Adapter TX to SoC RX It detects SD if not, not

              A NXP Guy told me about bad pcb grounding, but i think that as i dont placed pulldown resistors at CD and WP pins and they share IOMUX with UART1

              when I connect the TTL adapter, the IP core gets the proper polarity and it works

              Comment


              • #8
                i think that as i dont placed pulldown resistors at CD and WP pins and they share IOMUX with UART1
                Does this mean, that in your device tree you map CD and WP to UART1 pins? Do you use UART1 to connect the debug console? If yes, I am not sure what will happen as CD/WP are normally mapped to GPIO, but in your case they woudl be mapped to UART (?)

                Also: Connecting TX from PC may cause current leaking from PC to your board which often influences boot process (the voltage from TX will flow through ESD diode inside chips to power rail). That is reason why we isolated the debug console in OpenRex - we used transistors there.

                Comment


                • #9
                  Device Tree configures that pins for uart and uart works but if i do not connect uart the SD is not detected
                  SD is not exactly at tx rx pins but is in rts

                  But if i remove uart during linux running it continues working

                  This is quite strange!

                  Im testing all the hardware and the whole board runs fine!

                  I used Openrex Tutorials to scan i2c

                  Pinmux its the same as in the EVK but EVK inludes MECHANICAL detection

                  This is the last time i dont place, at least, a pulldown resistor!

                  King regards

                  Comment


                  • #10
                    What do you mean, when you say, "SD is on RTS"?

                    "But if i remove uart during linux running it continues working"
                    - that is why I mentioned, that a current leaking may influence the boot process ... only the time when it is starting. Once it boots up, some signals may change, e.g. level of RTS, so then it keeps working oki.

                    Comment


                    • #11
                      SD_CD is not routed to J14 in my board but yes in the EVK

                      SD_CD shares mux with UART RTS (J14) so it shares muxing area with uart

                      Perhaps any kind of feeding... i dont know this is strange!


                      Click image for larger version

Name:	j14.png
Views:	173
Size:	264.5 KB
ID:	5984
                      Click image for larger version

Name:	sdcd.png
Views:	199
Size:	156.4 KB
ID:	5986

                      Comment


                      • #12
                        I am not sure how it is in your software, but in iMX6 the CD alternate function is set as GPIO with proper pull up/down and it is not actually using CD alternate function.

                        Comment


                        • #13
                          Do you mean as follows:

                          The CD situation its being detected from a GPIO from OS by polling?

                          Is that GPIO shared with SD CD IP Core input?

                          I tied the RTS pin directly to GND without resistor as EVK SD1 works with SD mechanical CD

                          Comment


                          • #14
                            iMX6 software which we have with our boards uses for card detect a pin which is configured as GPIO. From your screenshot, it looks to me like you are configuring the pin as USHDC1_CD pin, that is why I am asking. Did you try to set it in uboot as a GPIO and put there pull down resistor?

                            But I would need to see device tree of your board and also the EVK board to see the difference.

                            Comment


                            • #15
                              Ok

                              I did not tried yet ...

                              EVK uses for SD_CD the RTS that is muxed with SD_CD so probably is not configured as GPIO..

                              I will try by setting another unused GPIO to test if it works

                              I´m currently using the EVK device tree i still not compiled uboot with my last pinmuxtool settings

                              Click image for larger version

Name:	gg.png
Views:	136
Size:	272.0 KB
ID:	5997


                              Attached Files

                              Comment

                              Working...
                              X