04/12/16 [linux-elphel][ahciwrite] by Mikhail Karpenko: WIP: imgsrv stops at reading frame params
Mikhail Karpenko committed changes to the Elphel git project :
WIP: imgsrv stops at reading frame params
WIP: imgsrv stops at reading frame params
04/12/16 [x393][framepars] by Andrey Filippov: removed stray line
Andrey Filippov committed changes to the Elphel git project :
removed stray line
removed stray line
04/12/16 [x393][master] by Andrey Filippov: made Result:OK, added py393/generated to .gitignore
Andrey Filippov committed changes to the Elphel git project :
made Result:OK, added py393/generated to .gitignore
made Result:OK, added py393/generated to .gitignore
04/12/16 [meta-elphel393][master-next] by Oleg Dzhimiev: fixed variable
Oleg Dzhimiev committed changes to the Elphel git project :
fixed variable
fixed variable
04/12/16 [x393][master] by Andrey Filippov: merged with parallel-sensors
Andrey Filippov committed changes to the Elphel git project :
merged with parallel-sensors
merged with parallel-sensors
04/12/16 [meta-elphel393][master] by Oleg Dzhimiev: added copying of generated files into linux-elphel project
Oleg Dzhimiev committed changes to the Elphel git project :
added copying of generated files into linux-elphel project
added copying of generated files into linux-elphel project
04/12/16 [x393][framepars] by Andrey Filippov: removed 'generated' folder, should be re-generated by bitbake
Andrey Filippov committed changes to the Elphel git project :
removed 'generated' folder, should be re-generated by bitbake
removed 'generated' folder, should be re-generated by bitbake
04/12/16 [x393][parallel-sensors] by Andrey Filippov: working on i2c driver
Andrey Filippov committed changes to the Elphel git project :
working on i2c driver
working on i2c driver
04/12/16 [linux-elphel][ahciwrite] by Oleg Dzhimiev: turned off DEBUG
Oleg Dzhimiev committed changes to the Elphel git project :
turned off DEBUG
turned off DEBUG
04/12/16 [linux-elphel][jtag] by Oleg Dzhimiev: Merge remote-tracking branch 'origin/jtag'
Oleg Dzhimiev committed changes to the Elphel git project :
Merge remote-tracking branch 'origin/jtag'
Merge remote-tracking branch 'origin/jtag'
04/12/16 [meta-elphel393][master] by Oleg Dzhimiev: dts records for usb
Oleg Dzhimiev committed changes to the Elphel git project :
dts records for usb
dts records for usb
Zynq development issues
problem 1: vbus not found:
New page
==Config=====kernel===
4.0 (linux-xlnx 468329e7fac2b22e76897fbd40532cc0884ded2a)
===device-tree===
...
ps7_usb_0: ps7-usb@e0002000 {
clocks = <&clkc 28>;
compatible = "xlnx,zynq-usb-2.20a", "chipidea,usb2";
reg = <0xe0002000 0x1000>;
interrupt-parent = <&ps7_scugic_0>;
interrupts = <0 21 4>;
dr_mode = "host";
phy_type = "ulpi";
usb-phy = <&usb_phy0>;
} ;
...
} ;
...
usb_phy0: phy0{
compatible = "ulpi-phy";
#phy-cells = <0>;
reg = <0xe0002000 0x1000>;
viewport = <0x170>;
} ;
===.config===
CONFIG_USB_ULPI=y
CONFIG_USB_ULPI_VIEWPORT=y
CONFIG_USB_CHIPIDEA_DEBUG=y
CONFIG_USB_GPIO_VBUS=n
CONFIG_USB_OTG=n
CONFIG_USB_GADGET=n
==from dmesg==
<font size='2'>
[ 1.035759] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.042319] usbcore: registered new interface driver usb-storage
<span style='color:red;'>[ 1.073619] e0002000.ps7-usb supply vbus not found, using dummy regulator</span>
[ 1.103560] Registering platform device 'ci_hdrc.0'. Parent at e0002000.ps7-usb
<span style='color:red;'>[ 1.114806] ci_hdrc ci_hdrc.0: ChipIdea HDRC found, revision: 22, lpm: 0; cap: f00d4100 op: f00d4140</span>
<span style='color:red;'>[ 1.136023] ci_hdrc ci_hdrc.0: unable to init phy: -110</span>
<span style='color:red;'>[ 1.141232] ci_hdrc: probe of ci_hdrc.0 failed with error -110</span>
</font>
==problem 1: vbus not found==
===reason?===
the problem is not critical
==problem 2: unable to init phy: -110==
===reason?===
* corrected the device tree record (s/viewport/view-port/):
usb_phy0: phy0{
compatible = "ulpi-phy";
#phy-cells = <0>;
reg = <0xe0002000 0x1000>;
<b>view-port</b> = <0x170>;
} ;
* order in device tree does not matter
==Links==
* [https://forums.xilinx.com/t5/Embedded-Linux/USB-boot-with-Linux-2015-2-build/td-p/643868 Discussion w/o solution]
* [http://www.wiki.xilinx.com/Zynq+Linux+USB+Device+Driver Zynq Linux USB Device Driver]
* [https://forums.xilinx.com/t5/Embedded-Linux/USB-works-in-device-mode-but-not-in-host-mode/td-p/679097 ?!] Oleg
Zynq development issues
New page
==Config=====kernel===
4.0 (linux-xlnx 468329e7fac2b22e76897fbd40532cc0884ded2a)
===device-tree===
...
ps7_usb_0: ps7-usb@e0002000 {
clocks = <&clkc 28>;
compatible = "xlnx,zynq-usb-2.20a", "chipidea,usb2";
reg = <0xe0002000 0x1000>;
interrupt-parent = <&ps7_scugic_0>;
interrupts = <0 21 4>;
dr_mode = "host";
phy_type = "ulpi";
usb-phy = <&usb_phy0>;
} ;
...
} ;
...
usb_phy0: phy0{
compatible = "ulpi-phy";
#phy-cells = <0>;
reg = <0xe0002000 0x1000>;
viewport = <0x170>;
} ;
===.config===
CONFIG_USB_ULPI=y
CONFIG_USB_ULPI_VIEWPORT=y
CONFIG_USB_CHIPIDEA_DEBUG=y
CONFIG_USB_GPIO_VBUS=n
CONFIG_USB_OTG=n
CONFIG_USB_GADGET=n
==from dmesg==
<font size='2'>
[ 1.035759] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.042319] usbcore: registered new interface driver usb-storage
<span style='color:red;'>[ 1.073619] e0002000.ps7-usb supply vbus not found, using dummy regulator</span>
[ 1.103560] Registering platform device 'ci_hdrc.0'. Parent at e0002000.ps7-usb
<span style='color:red;'>[ 1.114806] ci_hdrc ci_hdrc.0: ChipIdea HDRC found, revision: 22, lpm: 0; cap: f00d4100 op: f00d4140</span>
<span style='color:red;'>[ 1.136023] ci_hdrc ci_hdrc.0: unable to init phy: -110</span>
<span style='color:red;'>[ 1.141232] ci_hdrc: probe of ci_hdrc.0 failed with error -110</span>
</font>
==problem 1: vbus not found==
===reason?===
==problem 2: unable to init phy: -110==
===reason?===
==Links==
* [https://forums.xilinx.com/t5/Embedded-Linux/USB-boot-with-Linux-2015-2-build/td-p/643868 Discussion w/o solution]
* [http://www.wiki.xilinx.com/Zynq+Linux+USB+Device+Driver Zynq Linux USB Device Driver]
* [https://forums.xilinx.com/t5/Embedded-Linux/USB-works-in-device-mode-but-not-in-host-mode/td-p/679097 ?!] Oleg
04/12/16 [linux-elphel][framepars] by Andrey Filippov: working on sensor ports i2c
Andrey Filippov committed changes to the Elphel git project :
working on sensor ports i2c
working on sensor ports i2c
Zynq development issues
New page
==Config====dmesg==
<font size='2'>
[ 1.035759] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.042319] usbcore: registered new interface driver usb-storage
<span style='color:red;'>[ 1.073619] e0002000.ps7-usb supply vbus not found, using dummy regulator</span>
[ 1.103560] Registering platform device 'ci_hdrc.0'. Parent at e0002000.ps7-usb
<span style='color:red;'>[ 1.114806] ci_hdrc ci_hdrc.0: ChipIdea HDRC found, revision: 22, lpm: 0; cap: f00d4100 op: f00d4140</span>
<span style='color:red;'>[ 1.136023] ci_hdrc ci_hdrc.0: unable to init phy: -110</span>
<span style='color:red;'>[ 1.141232] ci_hdrc: probe of ci_hdrc.0 failed with error -110</span>
</font>
==Links==
* [https://forums.xilinx.com/t5/Embedded-Linux/USB-boot-with-Linux-2015-2-build/td-p/643868 Discussion w/o solution]
* [http://www.wiki.xilinx.com/Zynq+Linux+USB+Device+Driver Zynq Linux USB Device Driver]
* [https://forums.xilinx.com/t5/Embedded-Linux/USB-works-in-device-mode-but-not-in-host-mode/td-p/679097 ?!] Oleg
Zynq development issues
Links:
New page
==Config====dmesg==
<font size='2'>
[ 1.035759] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.042319] usbcore: registered new interface driver usb-storage
<span style='color:red;'>[ 1.073619] e0002000.ps7-usb supply vbus not found, using dummy regulator</span>
[ 1.103560] Registering platform device 'ci_hdrc.0'. Parent at e0002000.ps7-usb
<span style='color:red;'>[ 1.114806] ci_hdrc ci_hdrc.0: ChipIdea HDRC found, revision: 22, lpm: 0; cap: f00d4100 op: f00d4140</span>
<span style='color:red;'>[ 1.136023] ci_hdrc ci_hdrc.0: unable to init phy: -110</span>
<span style='color:red;'>[ 1.141232] ci_hdrc: probe of ci_hdrc.0 failed with error -110</span>
</font>
==Links==
* [https://forums.xilinx.com/t5/Embedded-Linux/USB-boot-with-Linux-2015-2-build/td-p/643868 Discussion w/o solution]
* [http://www.wiki.xilinx.com/Zynq+Linux+USB+Device+Driver Zynq Linux USB Device Driver] Oleg
Zynq development issues
New page
==Log==<font size='2'>
[ 1.035759] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.042319] usbcore: registered new interface driver usb-storage
[ 1.073619] e0002000.ps7-usb supply vbus not found, using dummy regulator
[ 1.103560] Registering platform device 'ci_hdrc.0'. Parent at e0002000.ps7-usb
[ 1.114806] ci_hdrc ci_hdrc.0: ChipIdea HDRC found, revision: 22, lpm: 0; cap: f00d4100 op: f00d4140
[ 1.136023] ci_hdrc ci_hdrc.0: unable to init phy: -110
[ 1.141232] ci_hdrc: probe of ci_hdrc.0 failed with error -110
</font> Oleg
04/09/16 [linux-elphel][jtag] by Mikhail Karpenko: WIP: rename X313_* macro
Mikhail Karpenko committed changes to the Elphel git project :
WIP: rename X313_* macro
WIP: rename X313_* macro
04/09/16 [linux-elphel][master] by Mikhail Karpenko: WIP: update circbuf_lseek code
Mikhail Karpenko committed changes to the Elphel git project :
WIP: update circbuf_lseek code
WIP: update circbuf_lseek code
04/08/16 [linux-elphel][framepars] by Oleg Dzhimiev: ignore nand fail bbt scan on the very first boot
Oleg Dzhimiev committed changes to the Elphel git project :
ignore nand fail bbt scan on the very first boot
ignore nand fail bbt scan on the very first boot
Pages
