<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how to configure UART4 with RTSCTS mode on iMX6 ? in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/how-to-configure-UART4-with-RTSCTS-mode-on-iMX6/m-p/228857#M16798</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should be able to handle this in software by setting &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;UART4_UFCR[DCEDTE] and IOMUXC_UART4_UART_RTS_B_SELECT_INPUT appropriately. Note that IOMUXC_UART4_UART_RTS_B_SELECT_INPUT is normally set by &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;MX6Q_PAD_CSI0_DAT16__UART4_RTS and MX6Q_PAD_CSI0_DAT17__UART4_CTS, but note that they both set IOMUXC_UART4_UART_RTS_B_SELECT_INPUT so make sure MX6Q_PAD_CSI0_DAT16__UART4_RTS comes last in the list, so its value is the one that is written last.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Jan 2014 15:35:34 GMT</pubDate>
    <dc:creator>mattreimer</dc:creator>
    <dc:date>2014-01-09T15:35:34Z</dc:date>
    <item>
      <title>how to configure UART4 with RTSCTS mode on iMX6 ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/how-to-configure-UART4-with-RTSCTS-mode-on-iMX6/m-p/228854#M16795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to interface an iMX6 (dual core) with a bluetooth module via the UART4 bus. (end-user will see android, code below is from linux kernel) I've done the following in my board file,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="jive_text_macro _jivemacro_uid_13789953678618853 jive_macro_code" jivemacro_uid="_13789953678618853"&gt;
&lt;P&gt;static const struct imxuart_platform_data mx6q_sd_uart4_data __initconst = {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .flags&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = IMXUART_HAVE_RTSCTS,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .dma_req_rx =&amp;nbsp;&amp;nbsp; MX6Q_DMA_REQ_UART4_RX,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .dma_req_tx = MX6Q_DMA_REQ_UART4_TX,&lt;/P&gt;
&lt;P&gt;};&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;static inline void mx6q_sabresd_init_uart(void)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // imx6q_add_imx_uart(3, NULL);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; imx6q_add_imx_uart(3, &amp;amp;mx6q_sd_uart4_data);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; imx6q_add_imx_uart(0, NULL);&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it does not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Specifically, when I probe (with an Oscilloscope) the CTS and RTS lines (with respect to iMX6), I can see CTS line toggling - indicating that my bluetooth module wants to talk to the iMX6. But the RTS line just stays high. Which means that from my bluetooth module's point-of-view, the iMX6 is not ready to receive any data. Does anyone know how I could fix this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For reference here are snippets of how I've done the pin multiplexing,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13789958106085415" jivemacro_uid="_13789958106085415" modifiedtitle="true"&gt;
&lt;P&gt;&amp;gt; cat arch/arm/mach-mx6/board-mx6q_sabresd.h&lt;/P&gt;
&lt;P&gt;/*&lt;/P&gt;
&lt;P&gt; * Copyright (C) 2012-2013 Freescale Semiconductor, Inc. All Rights Reserved.&lt;/P&gt;
&lt;P&gt;&amp;lt;comments snipped out&amp;gt;&lt;/P&gt;
&lt;P&gt; */&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;#define _BOARD_MX6Q_SABRESD_H&lt;/P&gt;
&lt;P&gt;#include &amp;lt;mach/iomux-mx6q.h&amp;gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;static iomux_v3_cfg_t mx6q_sabresd_pads[] = {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; MX6Q_PAD_CSI0_DAT4__GPIO_5_22,&amp;nbsp;&amp;nbsp; /* LCD reset at pad N1 */&lt;/P&gt;
&lt;P&gt; MX6Q_PAD_SD3_DAT6__UART1_RXD,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; MX6Q_PAD_SD3_DAT7__UART1_TXD,&lt;/P&gt;
&lt;P&gt;// un-needed pins snipped out&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;
/********************* Wifi and bluetooth PIN mux **************************************************/&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; MX6Q_PAD_CSI0_DAT12__UART4_TXD, /* uart transmit at pad M2 */&lt;/P&gt;
&lt;P&gt;&amp;nbsp; MX6Q_PAD_CSI0_DAT13__UART4_RXD, /* uart receive at pad L1 */&lt;/P&gt;
&lt;P&gt;&amp;nbsp; MX6Q_PAD_CSI0_DAT16__UART4_RTS, /* UART RTS at pad L4 */&lt;/P&gt;
&lt;P&gt;&amp;nbsp; MX6Q_PAD_CSI0_DAT17__UART4_CTS, /* UART CTS at pad L3 */&lt;/P&gt;
&lt;P&gt;&amp;nbsp; MX6Q_PAD_CSI0_DAT19__GPIO_6_5, /* bluetooth gpio pin at pad L6 */&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;};&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Abraham V.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Sep 2013 14:31:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/how-to-configure-UART4-with-RTSCTS-mode-on-iMX6/m-p/228854#M16795</guid>
      <dc:creator>abraham_v</dc:creator>
      <dc:date>2013-09-12T14:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to configure UART4 with RTSCTS mode on iMX6 ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/how-to-configure-UART4-with-RTSCTS-mode-on-iMX6/m-p/228855#M16796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abraham,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may need to check if your hardware design as below describe; in Freescale's SoC, the defination in CTS and RTS are different with other vendor (Samsung, Ti and etc).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MX6Q_PAD_CSI0_DAT17__UART4_CTS connect to Bluetooth's "CTS"&lt;BR /&gt;and&lt;BR /&gt;MX6Q_PAD_CSI0_DAT16__UART4_RTS connect to Bluetooth's "RTS"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 01:30:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/how-to-configure-UART4-with-RTSCTS-mode-on-iMX6/m-p/228855#M16796</guid>
      <dc:creator>rickchu</dc:creator>
      <dc:date>2013-09-13T01:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to configure UART4 with RTSCTS mode on iMX6 ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/how-to-configure-UART4-with-RTSCTS-mode-on-iMX6/m-p/228856#M16797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;You may need to check if your hardware design as below describe; in Freescale's SoC, the defination in CTS and RTS are different with other vendor (Samsung, Ti and etc).&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yikes! &lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For better or worse, this appears to be the issue. We've worked with chips from other manufacturers before and just assumed that it would be the same for Freescale as well (with regards to UART). As a result, our CTS and RTS lines have been swapped. :smileysad:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know if there is anyway to fix this issue from software? Perhaps some way to tell the driver to use the CTS line in RTS mode and vice-versa?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Worried,&lt;/P&gt;&lt;P&gt;Abraham V.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 04:58:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/how-to-configure-UART4-with-RTSCTS-mode-on-iMX6/m-p/228856#M16797</guid>
      <dc:creator>abraham_v</dc:creator>
      <dc:date>2013-09-13T04:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to configure UART4 with RTSCTS mode on iMX6 ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/how-to-configure-UART4-with-RTSCTS-mode-on-iMX6/m-p/228857#M16798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should be able to handle this in software by setting &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;UART4_UFCR[DCEDTE] and IOMUXC_UART4_UART_RTS_B_SELECT_INPUT appropriately. Note that IOMUXC_UART4_UART_RTS_B_SELECT_INPUT is normally set by &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;MX6Q_PAD_CSI0_DAT16__UART4_RTS and MX6Q_PAD_CSI0_DAT17__UART4_CTS, but note that they both set IOMUXC_UART4_UART_RTS_B_SELECT_INPUT so make sure MX6Q_PAD_CSI0_DAT16__UART4_RTS comes last in the list, so its value is the one that is written last.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 15:35:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/how-to-configure-UART4-with-RTSCTS-mode-on-iMX6/m-p/228857#M16798</guid>
      <dc:creator>mattreimer</dc:creator>
      <dc:date>2014-01-09T15:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to configure UART4 with RTSCTS mode on iMX6 ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/how-to-configure-UART4-with-RTSCTS-mode-on-iMX6/m-p/228858#M16799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rick Chu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have already connected CTS to CTS , and RTS to RTS lines between the iMX6SoloLite processor and WL1835 chip. and TX and RX has been swapped.&amp;nbsp; Even thought Bluetooth communication is not happening. Below i mentioned the error which we are getting while we loading the kernal. If you have any idea please suggest me.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Starting kernel ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Booting Linux on physical CPU 0x0&lt;/P&gt;&lt;P&gt;Linux version 3.10.53 (root@vivek-To-be-filled-by-O-E-M) (gcc version 4.8.1 (GCC) ) #147 SMP PREEMPT Mon Mar 2 11:04:38 IST 2015&lt;/P&gt;&lt;P&gt;CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d&lt;/P&gt;&lt;P&gt;CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache&lt;/P&gt;&lt;P&gt;Machine: Freescale i.MX6 SoloLite (Device Tree), model: Freescale i.MX6 SoloLite EVK Board(PFUZE100)&lt;/P&gt;&lt;P&gt;cma: CMA: reserved 320 MiB at 8c000000&lt;/P&gt;&lt;P&gt;Memory policy: ECC disabled, Data cache writealloc&lt;/P&gt;&lt;P&gt;PERCPU: Embedded 8 pages/cpu @80cec000 s8960 r8192 d15616 u32768&lt;/P&gt;&lt;P&gt;Built 1 zonelists in Zone order, mobility grouping on.&amp;nbsp; Total pages: 130048&lt;/P&gt;&lt;P&gt;Kernel command line: console=ttymxc0,115200 root=/dev/mmcblk0p2 rootwait rw&lt;/P&gt;&lt;P&gt;PID hash table entries: 2048 (order: 1, 8192 bytes)&lt;/P&gt;&lt;P&gt;Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)&lt;/P&gt;&lt;P&gt;Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)&lt;/P&gt;&lt;P&gt;Memory: 512MB = 512MB total&lt;/P&gt;&lt;P&gt;Memory: 182260k/182260k available, 342028k reserved, 0K highmem&lt;/P&gt;&lt;P&gt;Virtual kernel memory layout:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vector&amp;nbsp; : 0xffff0000 - 0xffff1000&amp;nbsp;&amp;nbsp; (&amp;nbsp;&amp;nbsp; 4 kB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fixmap&amp;nbsp; : 0xfff00000 - 0xfffe0000&amp;nbsp;&amp;nbsp; ( 896 kB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vmalloc : 0xa0800000 - 0xff000000&amp;nbsp;&amp;nbsp; (1512 MB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lowmem&amp;nbsp; : 0x80000000 - 0xa0000000&amp;nbsp;&amp;nbsp; ( 512 MB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pkmap&amp;nbsp;&amp;nbsp; : 0x7fe00000 - 0x80000000&amp;nbsp;&amp;nbsp; (&amp;nbsp;&amp;nbsp; 2 MB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; modules : 0x7f000000 - 0x7fe00000&amp;nbsp;&amp;nbsp; (&amp;nbsp; 14 MB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .text : 0x80008000 - 0x807db8dc&amp;nbsp;&amp;nbsp; (8015 kB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .init : 0x807dc000 - 0x80826300&amp;nbsp;&amp;nbsp; ( 297 kB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .data : 0x80828000 - 0x80875320&amp;nbsp;&amp;nbsp; ( 309 kB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .bss : 0x80875320 - 0x808dd55c&amp;nbsp;&amp;nbsp; ( 417 kB)&lt;/P&gt;&lt;P&gt;SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1&lt;/P&gt;&lt;P&gt;Preemptible hierarchical RCU implementation.&lt;/P&gt;&lt;P&gt;&amp;nbsp; RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.&lt;/P&gt;&lt;P&gt;NR_IRQS:16 nr_irqs:16 16&lt;/P&gt;&lt;P&gt;L310 cache controller enabled&lt;/P&gt;&lt;P&gt;l2x0: 16 ways, CACHE_ID 0x410000c8, AUX_CTRL 0x32030000, Cache size: 262144 B&lt;/P&gt;&lt;P&gt;sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956ms&lt;/P&gt;&lt;P&gt;Console: colour dummy device 80x30&lt;/P&gt;&lt;P&gt;Calibrating delay loop... 1581.05 BogoMIPS (lpj=7905280)&lt;/P&gt;&lt;P&gt;pid_max: default: 32768 minimum: 301&lt;/P&gt;&lt;P&gt;Mount-cache hash table entries: 512&lt;/P&gt;&lt;P&gt;CPU: Testing write buffer coherency: ok&lt;/P&gt;&lt;P&gt;CPU0: thread -1, cpu 0, socket 0, mpidr 80000000&lt;/P&gt;&lt;P&gt;Setting up static identity map for 0x805ce878 - 0x805ce8d0&lt;/P&gt;&lt;P&gt;Brought up 1 CPUs&lt;/P&gt;&lt;P&gt;SMP: Total of 1 processors activated (1581.05 BogoMIPS).&lt;/P&gt;&lt;P&gt;CPU: All CPU(s) started in SVC mode.&lt;/P&gt;&lt;P&gt;devtmpfs: initialized&lt;/P&gt;&lt;P&gt;pinctrl core: initialized pinctrl subsystem&lt;/P&gt;&lt;P&gt;regulator-dummy: no parameters&lt;/P&gt;&lt;P&gt;NET: Registered protocol family 16&lt;/P&gt;&lt;P&gt;DMA: preallocated 256 KiB pool for atomic coherent allocations&lt;/P&gt;&lt;P&gt;Use WDOG1 as reset source&lt;/P&gt;&lt;P&gt;syscon 20c8000.anatop: regmap [mem 0x020c8000-0x020c8fff] registered&lt;/P&gt;&lt;P&gt;vdd1p1: 800 &amp;lt;--&amp;gt; 1375 mV at 1125 mV &lt;/P&gt;&lt;P&gt;vdd3p0: 2800 &amp;lt;--&amp;gt; 3150 mV at 3000 mV &lt;/P&gt;&lt;P&gt;vdd2p5: 2100 &amp;lt;--&amp;gt; 2850 mV at 2525 mV &lt;/P&gt;&lt;P&gt;cpu: 725 &amp;lt;--&amp;gt; 1450 mV at 1100 mV &lt;/P&gt;&lt;P&gt;vddpu: 725 &amp;lt;--&amp;gt; 1450 mV at 1100 mV &lt;/P&gt;&lt;P&gt;vddsoc: 725 &amp;lt;--&amp;gt; 1450 mV at 1175 mV &lt;/P&gt;&lt;P&gt;syscon 20e0000.iomuxc-gpr: regmap [mem 0x020e0000-0x020e0037] registered&lt;/P&gt;&lt;P&gt;syscon 21bc000.ocotp-ctrl: regmap [mem 0x021bc000-0x021bffff] registered&lt;/P&gt;&lt;P&gt;hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.&lt;/P&gt;&lt;P&gt;hw-breakpoint: maximum watchpoint size is 4 bytes.&lt;/P&gt;&lt;P&gt;imx6sl-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver&lt;/P&gt;&lt;P&gt;bio: create slab &amp;lt;bio-0&amp;gt; at 0&lt;/P&gt;&lt;P&gt;lcd-3v3: no parameters&lt;/P&gt;&lt;P&gt;wm8962-supply-3v15: 3150 mV &lt;/P&gt;&lt;P&gt;wm8962-supply-4v2: 4325 mV &lt;/P&gt;&lt;P&gt;wm8962-supply-1v8: 1800 mV &lt;/P&gt;&lt;P&gt;ov5642-supply-2v8: 2800 mV &lt;/P&gt;&lt;P&gt;ov5642-supply-1v8: 1800 mV &lt;/P&gt;&lt;P&gt;ov5642-supply-1v5: 1500 mV &lt;/P&gt;&lt;P&gt;wlan-en-regulator: 1800 mV &lt;/P&gt;&lt;P&gt;reg-fixed-voltage regulator.21: Fixed regulator specified with variable voltages&lt;/P&gt;&lt;P&gt;reg-fixed-voltage: probe of regulator.21 failed with error -22&lt;/P&gt;&lt;P&gt;i2c-core: driver [max17135] using legacy suspend method&lt;/P&gt;&lt;P&gt;i2c-core: driver [max17135] using legacy resume method&lt;/P&gt;&lt;P&gt;SCSI subsystem initialized&lt;/P&gt;&lt;P&gt;i2c i2c-0: IMX I2C adapter registered&lt;/P&gt;&lt;P&gt;i2c i2c-1: IMX I2C adapter registered&lt;/P&gt;&lt;P&gt;media: Linux media interface: v0.10&lt;/P&gt;&lt;P&gt;Linux video capture interface: v2.00&lt;/P&gt;&lt;P&gt;pps_core: LinuxPPS API ver. 1 registered&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti &amp;lt;&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:giometti@linux.it"&gt;giometti@linux.it&lt;/A&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;PTP clock support registered&lt;/P&gt;&lt;P&gt;MIPI CSI2 driver module loaded&lt;/P&gt;&lt;P&gt;ads129x: Driver-Driver Initads129x: mutex init ads129x: sem init ads129x: Init succesfullads129x: 0, 0 retAdvanced Linux Sound Architecture Driver Initialized.&lt;/P&gt;&lt;P&gt;Bluetooth: Core ver 2.16&lt;/P&gt;&lt;P&gt;NET: Registered protocol family 31&lt;/P&gt;&lt;P&gt;Bluetooth: HCI device and connection manager initialized&lt;/P&gt;&lt;P&gt;Bluetooth: HCI socket layer initialized&lt;/P&gt;&lt;P&gt;Bluetooth: L2CAP socket layer initialized&lt;/P&gt;&lt;P&gt;Bluetooth: SCO socket layer initialized&lt;/P&gt;&lt;P&gt;pureg-dummy: no parameters&lt;/P&gt;&lt;P&gt;Switching to clocksource mxc_timer1&lt;/P&gt;&lt;P&gt;NET: Registered protocol family 2&lt;/P&gt;&lt;P&gt;TCP established hash table entries: 4096 (order: 3, 32768 bytes)&lt;/P&gt;&lt;P&gt;TCP bind hash table entries: 4096 (order: 3, 32768 bytes)&lt;/P&gt;&lt;P&gt;TCP: Hash tables configured (established 4096 bind 4096)&lt;/P&gt;&lt;P&gt;TCP: reno registered&lt;/P&gt;&lt;P&gt;UDP hash table entries: 256 (order: 1, 8192 bytes)&lt;/P&gt;&lt;P&gt;UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)&lt;/P&gt;&lt;P&gt;NET: Registered protocol family 1&lt;/P&gt;&lt;P&gt;RPC: Registered named UNIX socket transport module.&lt;/P&gt;&lt;P&gt;RPC: Registered udp transport module.&lt;/P&gt;&lt;P&gt;RPC: Registered tcp transport module.&lt;/P&gt;&lt;P&gt;RPC: Registered tcp NFSv4.1 backchannel transport module.&lt;/P&gt;&lt;P&gt;hw perfevents: enabled with ARMv7 Cortex-A9 PMU driver, 7 counters available&lt;/P&gt;&lt;P&gt;imx6_busfreq busfreq.2: busfreq_probe: failed to get pll3_usb_otg&lt;/P&gt;&lt;P&gt;imx6_busfreq: probe of busfreq.2 failed with error -2&lt;/P&gt;&lt;P&gt;Bus freq driver module loaded&lt;/P&gt;&lt;P&gt;futex hash table entries: 256 (order: 2, 16384 bytes)&lt;/P&gt;&lt;P&gt;VFS: Disk quotas dquot_6.5.2&lt;/P&gt;&lt;P&gt;Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)&lt;/P&gt;&lt;P&gt;NFS: Registering the id_resolver key type&lt;/P&gt;&lt;P&gt;Key type id_resolver registered&lt;/P&gt;&lt;P&gt;Key type id_legacy registered&lt;/P&gt;&lt;P&gt;jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.&lt;/P&gt;&lt;P&gt;fuse init (API version 7.22)&lt;/P&gt;&lt;P&gt;msgmni has been set to 995&lt;/P&gt;&lt;P&gt;io scheduler noop registered&lt;/P&gt;&lt;P&gt;io scheduler deadline registered&lt;/P&gt;&lt;P&gt;io scheduler cfq registered (default)&lt;/P&gt;&lt;P&gt;MIPI DSI driver module loaded&lt;/P&gt;&lt;P&gt;ILI9163 driver initimx-sdma 20ec000.sdma: loaded firmware 1.1&lt;/P&gt;&lt;P&gt;imx-sdma 20ec000.sdma: initialized&lt;/P&gt;&lt;P&gt;pfuze100-regulator 0-0008: unrecognized pfuze chip ID!&lt;/P&gt;&lt;P&gt;pfuze100-regulator: probe of 0-0008 failed with error -5&lt;/P&gt;&lt;P&gt;Serial: IMX driver&lt;/P&gt;&lt;P&gt;imx:uart RTS failed2020000.serial: ttymxc0 at MMIO 0x2020000 (irq = 58) is a IMX&lt;/P&gt;&lt;P&gt;console [ttymxc0] enabled&lt;/P&gt;&lt;P&gt;imx:uart has RTS/CTS2038000.serial: ttymxc3 at MMIO 0x2038000 (irq = 61) is a IMX&lt;/P&gt;&lt;P&gt;serial: Freescale lpuart driver&lt;/P&gt;&lt;P&gt;imx sema4 driver is registered.&lt;/P&gt;&lt;P&gt;[drm] Initialized drm 1.1.0 20060810&lt;/P&gt;&lt;P&gt;brd: module loaded&lt;/P&gt;&lt;P&gt;loop: module loaded&lt;/P&gt;&lt;P&gt;kim:/dev/ttymxc3 kim:1 kim:0 kim:115200 Kim: requested shutdown gpio succesfully(stk) :sysfs entries created&lt;/P&gt;&lt;P&gt; debugfs entries created ads129x: ads129x_probe&lt;/P&gt;&lt;P&gt;ads129x spi32766.0: No reset-gpios gpio&lt;/P&gt;&lt;P&gt;IRQ: 238&lt;/P&gt;&lt;P&gt;ads129x:ADS Chip registered, 1 chips total.&lt;/P&gt;&lt;P&gt;spi_imx 2008000.ecspi: probed&lt;/P&gt;&lt;P&gt;ili9163: LCD probe function calledili9163: Request CTS ili9163: Request Shutdown ili9163: pmw ON&lt;/P&gt;&lt;P&gt;ili9163: vmem ON&lt;/P&gt;&lt;P&gt;Console: switching to colour frame buffer device 16x20&lt;/P&gt;&lt;P&gt;ili9163: registerFB done&lt;/P&gt;&lt;P&gt;ili9163: spi_set_drv_data&lt;/P&gt;&lt;P&gt;fb0: ili9163fb frame buffer device,&lt;/P&gt;&lt;P&gt;&amp;nbsp; using 40960 KiB of video memory&lt;/P&gt;&lt;P&gt;spi_imx 200c000.ecspi: probed&lt;/P&gt;&lt;P&gt;CAN device driver interface&lt;/P&gt;&lt;P&gt;mousedev: PS/2 mouse device common for all mice&lt;/P&gt;&lt;P&gt;input: TSC2007 Touchscreen as /devices/virtual/input/input0&lt;/P&gt;&lt;P&gt;snvs_rtc 20cc034.snvs-rtc-lp: rtc core: registered 20cc034.snvs-rtc-lp as rtc0&lt;/P&gt;&lt;P&gt;i2c /dev entries driver&lt;/P&gt;&lt;P&gt;i2c-core: driver [mag3110] using legacy suspend method&lt;/P&gt;&lt;P&gt;i2c-core: driver [mag3110] using legacy resume method&lt;/P&gt;&lt;P&gt;imx2-wdt 20bc000.wdog: IMX2+ Watchdog Timer enabled. timeout=60s (nowayout=0)&lt;/P&gt;&lt;P&gt;Bluetooth: HCI UART driver ver 2.2&lt;/P&gt;&lt;P&gt;Bluetooth: HCI H4 protocol initialized&lt;/P&gt;&lt;P&gt;Bluetooth: HCI BCSP protocol initialized&lt;/P&gt;&lt;P&gt;Bluetooth: HCILL protocol initialized&lt;/P&gt;&lt;P&gt;Bluetooth: Generic Bluetooth SDIO driver ver 0.1&lt;/P&gt;&lt;P&gt;hdev 8602d000&lt;/P&gt;&lt;P&gt;HCI device registered (hdev 8602d000)&lt;/P&gt;&lt;P&gt;cpuidle: using governor ladder&lt;/P&gt;&lt;P&gt;cpuidle: using governor menu&lt;/P&gt;&lt;P&gt;hci0 8602d000&lt;/P&gt;&lt;P&gt;(stc):&amp;nbsp; chnl_id list empty :4 &lt;/P&gt;&lt;P&gt;(stk) : st_kim_startuse device tree data&lt;/P&gt;&lt;P&gt;kim: Bluetooth GPIO startsdhci: Secure Digital Host Controller Interface driver&lt;/P&gt;&lt;P&gt;sdhci: Copyright(c) Pierre Ossman&lt;/P&gt;&lt;P&gt;sdhci-pltfm: SDHCI platform and OF driver helper&lt;/P&gt;&lt;P&gt;mmc0: no vqmmc regulator found&lt;/P&gt;&lt;P&gt;mmc0: no vmmc regulator found&lt;/P&gt;&lt;P&gt;mmc0: SDHCI controller on 2190000.usdhc [2190000.usdhc] using DMA&lt;/P&gt;&lt;P&gt;sdhci-esdhc-imx 2198000.usdhc: could not get ultra high speed state, work on normal mode&lt;/P&gt;&lt;P&gt;mmc1: no vqmmc regulator found&lt;/P&gt;&lt;P&gt;mmc0: new high speed SDHC card at address 59b4&lt;/P&gt;&lt;P&gt;mmcblk0: mmc0:59b4 USD&amp;nbsp;&amp;nbsp; 3.74 GiB &lt;/P&gt;&lt;P&gt; mmcblk0: p1 p2&lt;/P&gt;&lt;P&gt;(stk) :ldisc_install = 1mmc1: SDHCI controller on 2198000.usdhc [2198000.usdhc] using DMA&lt;/P&gt;&lt;P&gt;[drm] Supports vblank timestamp caching Rev 1 (10.10.2010).&lt;/P&gt;&lt;P&gt;mmc1: card claims to support voltages below the defined range. These will be ignored.&lt;/P&gt;&lt;P&gt;[drm] No driver support for vblank timestamp query.&lt;/P&gt;&lt;P&gt;[drm] Initialized imx-drm 1.0.0 20120507 on minor 0&lt;/P&gt;&lt;P&gt;mmc1: queuing unknown CIS tuple 0x91 (3 bytes)&lt;/P&gt;&lt;P&gt;mmc1: new high speed SDIO card at address 0001&lt;/P&gt;&lt;P&gt;wm8962 1-001a: customer id 0 revision F&lt;/P&gt;&lt;P&gt;input: WM8962 Beep Generator as /devices/soc0/soc.1/2100000.aips-bus/21a8000.i2c/i2c-1/1-001a/input/input1&lt;/P&gt;&lt;P&gt;imx-wm8962 sound.24:&amp;nbsp; wm8962 &amp;lt;-&amp;gt; 202c000.ssi mapping ok&lt;/P&gt;&lt;P&gt;NET: Registered protocol family 26&lt;/P&gt;&lt;P&gt;TCP: cubic registered&lt;/P&gt;&lt;P&gt;NET: Registered protocol family 10&lt;/P&gt;&lt;P&gt;sit: IPv6 over IPv4 tunneling driver&lt;/P&gt;&lt;P&gt;NET: Registered protocol family 17&lt;/P&gt;&lt;P&gt;can: controller area network core (rev 20120528 abi 9)&lt;/P&gt;&lt;P&gt;NET: Registered protocol family 29&lt;/P&gt;&lt;P&gt;can: raw protocol (rev 20120528)&lt;/P&gt;&lt;P&gt;can: broadcast manager protocol (rev 20120528 t)&lt;/P&gt;&lt;P&gt;can: netlink gateway (rev 20130117) max_hops=1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bluetooth: RFCOMM TTY layer initialized&lt;/P&gt;&lt;P&gt;Bluetooth: RFCOMM socket layer initialized&lt;/P&gt;&lt;P&gt;Bluetooth: RFCOMM ver 1.11&lt;/P&gt;&lt;P&gt;Bluetooth: BNEP (Ethernet Emulation) ver 1.3&lt;/P&gt;&lt;P&gt;Bluetooth: BNEP filters: protocol multicast&lt;/P&gt;&lt;P&gt;Bluetooth: BNEP socket layer initialized&lt;/P&gt;&lt;P&gt;Bluetooth: HIDP (Human Interface Emulation) ver 1.2&lt;/P&gt;&lt;P&gt;Bluetooth: HIDP socket layer initialized&lt;/P&gt;&lt;P&gt;8021q: 802.1Q VLAN Support v1.8&lt;/P&gt;&lt;P&gt;Key type dns_resolver registered&lt;/P&gt;&lt;P&gt;VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4&lt;/P&gt;&lt;P&gt;imx6-cpufreq imx6-cpufreq.0: failed to get regulators&lt;/P&gt;&lt;P&gt;imx6-cpufreq: probe of imx6-cpufreq.0 failed with error -2&lt;/P&gt;&lt;P&gt;ov5642-supply-1v5: disabling&lt;/P&gt;&lt;P&gt;ov5642-supply-1v8: disabling&lt;/P&gt;&lt;P&gt;ov5642-supply-2v8: disabling&lt;/P&gt;&lt;P&gt;wm8962-supply-1v8: disabling&lt;/P&gt;&lt;P&gt;wm8962-supply-4v2: disabling&lt;/P&gt;&lt;P&gt;wm8962-supply-3v15: disabling&lt;/P&gt;&lt;P&gt;lcd-3v3: disabling&lt;/P&gt;&lt;P&gt;vddpu: disabling&lt;/P&gt;&lt;P&gt;regulator-dummy: disabling&lt;/P&gt;&lt;P&gt;imx mcc test is registered.&lt;/P&gt;&lt;P&gt;snvs_rtc 20cc034.snvs-rtc-lp: setting system clock to 1970-01-01 00:00:00 UTC (0)&lt;/P&gt;&lt;P&gt;ALSA device list:&lt;/P&gt;&lt;P&gt;&amp;nbsp; #0: wm8962-audio&lt;/P&gt;&lt;P&gt;(stk) :ldisc installation timeoutuse device tree data&lt;/P&gt;&lt;P&gt;(stk) :ldisc_install = 0&lt;/P&gt;&lt;P&gt;(stk) : timed out waiting for ldisc to be un-installed&lt;/P&gt;&lt;P&gt;kim: Bluetooth GPIO start(stk) :ldisc_install = 1&lt;/P&gt;&lt;P&gt;(stk) :ldisc installation timeoutuse device tree data&lt;/P&gt;&lt;P&gt;(stk) :ldisc_install = 0&lt;/P&gt;&lt;P&gt;kjournald starting.&amp;nbsp; Commit interval 5 seconds&lt;/P&gt;&lt;P&gt;EXT3-fs (mmcblk0p2): using internal journal&lt;/P&gt;&lt;P&gt;EXT3-fs (mmcblk0p2): recovery complete&lt;/P&gt;&lt;P&gt;EXT3-fs (mmcblk0p2): mounted filesystem with ordered data mode&lt;/P&gt;&lt;P&gt;VFS: Mounted root (ext3 filesystem) on device 179:2.&lt;/P&gt;&lt;P&gt;devtmpfs: mounted&lt;/P&gt;&lt;P&gt;Freeing unused kernel memory: 296K (807dc000 - 80826000)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INIT: version 2.88 booting(stk) : timed out waiting for ldisc to be un-installed&lt;/P&gt;&lt;P&gt;kim: Bluetooth GPIO start(stk) :ldisc_install = 1&lt;/P&gt;&lt;P&gt;Starting udev&lt;/P&gt;&lt;P&gt;udevd[121]: starting version 182&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(stk) :ldisc installation timeoutuse device tree data&lt;/P&gt;&lt;P&gt;(stk) :ldisc_install = 0&lt;/P&gt;&lt;P&gt;bootlogd: cannot allocate pseudo tty: No such file or directory&lt;/P&gt;&lt;P&gt;Loading modules backported from Linux version R8.5-0-gcb51164&lt;/P&gt;&lt;P&gt;Backport generated by backports.git R8.4-0-g0d46f43&lt;/P&gt;&lt;P&gt;ov5640_read_reg:write reg error:reg=300a&lt;/P&gt;&lt;P&gt;camera ov5640 is not found&lt;/P&gt;&lt;P&gt;(stk) : timed out waiting for ldisc to be un-installed&lt;/P&gt;&lt;P&gt;kim: Bluetooth GPIO start(stk) :ldisc_install = 1&lt;/P&gt;&lt;P&gt;csi_v4l_open: Internal error, camera is not found!&lt;/P&gt;&lt;P&gt;cfg80211: Calling CRDA to update world regulatory domain&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(stk) :ldisc installation timeoutuse device tree data&lt;/P&gt;&lt;P&gt;(stk) :ldisc_install = 0&lt;/P&gt;&lt;P&gt;cfg80211: World regulatory domain updated:&lt;/P&gt;&lt;P&gt;wlcore: ERROR could not get configuration binary ti-connectivity/wl18xx-conf.bin: -2&lt;/P&gt;&lt;P&gt;cfg80211:&amp;nbsp; DFS Master region: unset&lt;/P&gt;&lt;P&gt;cfg80211:&amp;nbsp;&amp;nbsp; (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)&lt;/P&gt;&lt;P&gt;wlcore: WARNING falling back to default config&lt;/P&gt;&lt;P&gt;cfg80211:&amp;nbsp;&amp;nbsp; (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)&lt;/P&gt;&lt;P&gt;cfg80211:&amp;nbsp;&amp;nbsp; (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)&lt;/P&gt;&lt;P&gt;cfg80211:&amp;nbsp;&amp;nbsp; (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)&lt;/P&gt;&lt;P&gt;cfg80211:&amp;nbsp;&amp;nbsp; (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A)&lt;/P&gt;&lt;P&gt;cfg80211:&amp;nbsp;&amp;nbsp; (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)&lt;/P&gt;&lt;P&gt;cfg80211:&amp;nbsp;&amp;nbsp; (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)&lt;/P&gt;&lt;P&gt;cfg80211:&amp;nbsp;&amp;nbsp; (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)&lt;/P&gt;&lt;P&gt;cfg80211:&amp;nbsp;&amp;nbsp; (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)&lt;/P&gt;&lt;P&gt;wlcore: wl18xx HW: 183x or 180x, PG 2.2 (ROM 0x11)&lt;/P&gt;&lt;P&gt;wlcore: loaded&lt;/P&gt;&lt;P&gt;wlcore: driver version: R8.5&lt;/P&gt;&lt;P&gt;wlcore: compilation time: Mon Mar&amp;nbsp; 2 05:40:54 2015&lt;/P&gt;&lt;P&gt;FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.&lt;/P&gt;&lt;P&gt;(stk) : timed out waiting for ldisc to be un-installed&lt;/P&gt;&lt;P&gt;kim: Bluetooth GPIO start(stk) :ldisc_install = 1ALSA: Restoring mixer settings...&lt;/P&gt;&lt;P&gt;Fri Feb 20 11:27:36 UTC 2015&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INIT: Entering runlevel: 5Configuring network interfaces... ifconfig: SIOCGIFFLAGS: No such device&lt;/P&gt;&lt;P&gt;Starting Xserver&lt;/P&gt;&lt;P&gt;Starting system message bus: Unknown username "xuser" in message bus configuration file&lt;/P&gt;&lt;P&gt;Unknown username "avahi" in message bus configuration file&lt;/P&gt;&lt;P&gt;dbus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(stk) :ldisc installation timeoutuse device tree data&lt;/P&gt;&lt;P&gt;(stk) :ldisc_install = 0&lt;/P&gt;&lt;P&gt;Starting Connection Manager&lt;/P&gt;&lt;P&gt;Starting Dropbear SSH server: dropbear.&lt;/P&gt;&lt;P&gt;(stk) : timed out waiting for ldisc to be un-installed&lt;/P&gt;&lt;P&gt;kim: Bluetooth GPIO start(stk) :ldisc_install = 1&lt;/P&gt;&lt;P&gt;Starting rpcbind daemon...done.&lt;/P&gt;&lt;P&gt;rpcbind: cannot get uid of 'rpc': Success&lt;/P&gt;&lt;P&gt;(stk) :ldisc installation timeoutuse device tree data&lt;/P&gt;&lt;P&gt;(stk) :ldisc_install = 0&lt;/P&gt;&lt;P&gt;Starting advanced power management daemon: No APM support in kernel&lt;/P&gt;&lt;P&gt;(failed.)&lt;/P&gt;&lt;P&gt;Starting syslogd/klogd: done&lt;/P&gt;&lt;P&gt; * Starting Avahi mDNS/DNS-SD Daemon: avahi-daemon&lt;/P&gt;&lt;P&gt;(stk) : timed out waiting for ldisc to be un-installed&lt;/P&gt;&lt;P&gt;Bluetooth: st_register failed -22&lt;/P&gt;&lt;P&gt;Timeout reached while wating for return value&lt;/P&gt;&lt;P&gt;Could not receive return value from daemon process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ...fail!&lt;/P&gt;&lt;P&gt;Starting Telephony daemon&lt;/P&gt;&lt;P&gt;Starting Linux NFC daemon&lt;/P&gt;&lt;P&gt;/etc/rc5.d/S64neard: line 26: /usr/lib/neard/neard: No such file or directory&lt;/P&gt;&lt;P&gt;Running local boot scripts (/etc/rc.local)Successfully initialized wpa_supplicant&lt;/P&gt;&lt;P&gt;Line 61: unknown global field 'p2p_go_ht40=1'.&lt;/P&gt;&lt;P&gt;Line 61: Invalid configuration line 'p2p_go_ht40=1'.&lt;/P&gt;&lt;P&gt;Line 63: unknown global field 'concurrent_sched_scan=1'.&lt;/P&gt;&lt;P&gt;Line 63: Invalid configuration line 'concurrent_sched_scan=1'.&lt;/P&gt;&lt;P&gt;Line 64: unknown global field 'p2p_disabled=1'.&lt;/P&gt;&lt;P&gt;Line 64: Invalid configuration line 'p2p_disabled=1'.&lt;/P&gt;&lt;P&gt;Failed to read or parse configuration '/etc/wpa_supplicant.conf'.&lt;/P&gt;&lt;P&gt;wlcore: PHY firmware version: Rev 8.2.0.0.224&lt;/P&gt;&lt;P&gt;wlcore: firmware booted (Rev 8.9.0.0.31)&lt;/P&gt;&lt;P&gt;IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Poky (Yocto Project Reference Distro) 1.7 imx6slevk /dev/ttymxc0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;imx6slevk login: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sivakumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 08:06:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/how-to-configure-UART4-with-RTSCTS-mode-on-iMX6/m-p/228858#M16799</guid>
      <dc:creator>sivakumarganesa</dc:creator>
      <dc:date>2015-03-02T08:06:31Z</dc:date>
    </item>
  </channel>
</rss>

