Difference between revisions of "DESK-XZ7-L/Peripherals/Console"

From DAVE Developer's Wiki
Jump to: navigation, search
(Created page with "<section begin=History/> {| style="border-collapse:collapse; " !colspan="4" style="width:100%; text-align:left"; border-bottom:solid 2px #ededed"|History |- !style="border-le...")
 
 
(2 intermediate revisions by 2 users not shown)
Line 6: Line 6:
 
!style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white"|Notes
 
!style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white"|Notes
 
|-
 
|-
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#ededed; padding:5px; color:#000000"|2023/01/23
+
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000"|2024/01/23
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#ededed; padding:5px; color:#000000"|DESK-XZ7-L-1.0.1 release
+
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000"|DESK-XZ7-L-1.0.1 release
 
|-
 
|-
 
|}
 
|}
Line 13: Line 13:
 
<section begin=Body/>
 
<section begin=Body/>
  
==Console UART==
+
== Peripheral Console ==
  
{| class="wikitable"
+
The Zynq-7000 main UART device (UART1) is mapped to the <code>ttyPS0</code> device.
|-
+
 
! Kit !! Physical device !! Processor's resource !! Connector !! Type !! Linux device file !! Notes
+
===Accessing the peripheral ===
|-
+
 
| Bora, Boralite and BoraX || Boot Console || UART1 || J17 || 2-wire RS232 UART || <code>/dev/ttyPS0</code> ||
+
====Linux messages at boot time====
|-
+
 
|}
+
<pre class="workstation-terminal">
 +
...
 +
[    0.000000] Kernel command line: console=ttyPS0,115200 earlycon root=/dev/mmcblk0p2 rw rootwait
 +
...
 +
[    0.207202] e0001000.serial: ttyPS0 at MMIO 0xe0001000 (irq = 35, base_baud = 3125000) is a xuartps
 +
[    0.221089] printk: console [ttyPS0] enabled
 +
...
 +
</pre>
  
 
<section end=Body/>
 
<section end=Body/>
  
----
+
[[Category:BORA]] [[Category:BORA Xpress]] [[Category:BORA Lite]]
 
 
[[Category:BORA]]
 

Latest revision as of 10:32, 26 January 2024

History
Issue Date Notes
2024/01/23 DESK-XZ7-L-1.0.1 release


Peripheral Console[edit | edit source]

The Zynq-7000 main UART device (UART1) is mapped to the ttyPS0 device.

Accessing the peripheral[edit | edit source]

Linux messages at boot time[edit | edit source]

...
[    0.000000] Kernel command line: console=ttyPS0,115200 earlycon root=/dev/mmcblk0p2 rw rootwait
...
[    0.207202] e0001000.serial: ttyPS0 at MMIO 0xe0001000 (irq = 35, base_baud = 3125000) is a xuartps
[    0.221089] printk: console [ttyPS0] enabled
...