diff --git a/source/linux/Demo_User_Guides/Benchmark_Demo_User_Guide.rst b/source/linux/Demo_User_Guides/Benchmark_Demo_User_Guide.rst
index 94467c6ba..df409f199 100644
--- a/source/linux/Demo_User_Guides/Benchmark_Demo_User_Guide.rst
+++ b/source/linux/Demo_User_Guides/Benchmark_Demo_User_Guide.rst
@@ -1,11 +1,13 @@
.. _Benchmark-Demo-User-Guide-label:
+###########################
Benchmark Demo - User Guide
-===========================
+###########################
+********
Overview
---------
+********
The default application loaded on the AM64x is the Benchmark Demo. It's
purpose is to showcase the capabilities of the four R5F cores as well as
@@ -17,7 +19,7 @@ it's performance.
All of the necessary equipment requirement and instructions are provided here.
Hardware Prerequisites
-----------------------
+======================
- TI AM64x EVM
@@ -27,60 +29,54 @@ Hardware Prerequisites
- Ethernet switch or ethernet router with DHCP service
-- SD card (minimum 2GB)
+- SD card (minimum 32GB)
Get Started
------------
+===========
-1. Follow the instructions in section
- :ref:`am64x-create-sd-card-with-default-images` to create an SD card with
- the prebuilt WIC image.
+#. Follow the instructions in section
+ :ref:`am64x-create-sd-card-with-default-images` to create an SD card with
+ the prebuilt WIC image.
-2. Insert the SD card into the AM64x EVM
+#. Insert the SD card into the AM64x EVM
-3. Set the AM64x EVM Boot mode to "Boot from SD card"
+#. Set the AM64x EVM Boot mode to "Boot from SD card"
- - SW2(1:8) on, on, off, off, off, off, on, off
- - SW3(1:8) off, on, off, off, off, off, off, off
+ - SW2(1:8) on, on, off, off, off, off, on, off
+ - SW3(1:8) off, on, off, off, off, off, off, off
-.. Image:: /images/boot_pins_sd_mode_oob.png
+ .. Image:: /images/boot_pins_sd_mode_oob.png
-4. Connect an ethernet cable from your ethernet switch or router to the
- AM64x EVM
+#. Connect an ethernet cable from your ethernet switch or router to the
+ AM64x EVM
-5. Connect your PC to the same ethernet switch or router
+#. Connect your PC to the same ethernet switch or router
-6. Connect the UART (J26 via USB cable) to the PC's USB port.
+#. Connect the UART (J26 via USB cable) to the PC's USB port.
-7. Open the the main UART0 port using the TeraTerm or other UART emulator
- program. Set the port to 115200bps, 8 bit, no parity, 1 stop bit, no flow control
+#. Open the the main UART0 port using the TeraTerm or other UART emulator
+ program. Set the port to 115200bps, 8 bit, no parity, 1 stop bit, no flow control
-8. Power on the AM64x
+#. Power on the AM64x
-9. After the Linux boot completes, login as "root", then type in "ifconfig" in
- Linux prompt to find out the IP address for the AM64x EVM
+#. After the Linux boot completes, login as "root", then type in "ifconfig" in
+ Linux prompt to find out the IP address for the AM64x EVM
-.. Image:: /images/OOB_Linux_ifconfig.png
+ .. Image:: /images/OOB_Linux_ifconfig.png
-10. Run the command below
+#. On the PC, open a Internet Browser and enter in the
+ following: ``http://IP_ADDRESS_OF_AM64x_EVM:3000``, for example, ``http://192.168.81.198:3000``
- .. code-block:: console
+#. The following web page will pop up:
- systemctl restart rpmsg_json.service
+ .. Image:: /images/OOB_GUI_root.png
-11. On the PC, open a Internet Browser and enter in the
- following: \ http://IP_ADDRESS_OF_AM64x_EVM:8081, for example, http://192.168.86.198:8081
+#. Click on the "Benchmark Demo":
-12. The following web page will pop up:
+ .. Image:: /images/OOB_GUI_stats.png
-.. Image:: /images/OOB_GUI_root.png
-
-13. Click on the "Benchmark Demo":
-
-.. Image:: /images/OOB_GUI_stats.png
-
-14. With the current release, the R5F app for each R5F core are fixed. User can only
- change the "Options" for each core, then click "LOAD" to refresh the statistics
+#. With the current release, the R5F app for each R5F core are fixed. User can only
+ change the "Options" for each core, then click "LOAD" to refresh the statistics
+-------------+------------------+----------------------+-----------------------------------------------------------+
| **R5 Core** | **App Name** | Default Option | **Description** |
@@ -96,12 +92,12 @@ Get Started
+-------------+------------------+----------------------+-----------------------------------------------------------+
Software Architecture
----------------------
+=====================
.. Image:: /images/OOB_SW_arch.png
Building Blocks
----------------
+===============
- **User Interface:** The GUI was built by using `GUI Composer `__. The
Benchmark Demo is the second page where inputs and outputs can be
@@ -124,10 +120,10 @@ Building Blocks
- Web server code is built on Node JS
Demo Internals
---------------
+==============
Programming Paradigm
-~~~~~~~~~~~~~~~~~~~~
+--------------------
- The user interface of the demo is built from GUI Composer and runs on
a PC's browser
@@ -143,7 +139,7 @@ Programming Paradigm
(Procedural Programming Paradigm)
Node JS
-~~~~~~~
+-------
When the AM64x boots, an initialization script executes the web server
code by calling the Node JS code. Several node packages are used to edit
@@ -151,7 +147,7 @@ the JSON file, create the demo instance, and serve up the files to the
client.
HTTP
-~~~~
+----
All data communication is handled via HTTP. Benchmark data from the
AM64x is requested by the GUI every second, whereas the option selection
@@ -160,7 +156,7 @@ The HTTP requests are handled with jQuery, and the body of each HTTP request
is a JSON string containing the input/output benchmark data.
JSON
-~~~~
+----
A JSON file has been used to exchange structured information between the
web server and the A53 Linux application (a user space application
@@ -171,28 +167,33 @@ and then update the JSON file accordingly. The updated JSON file
will then be displayed on the GUI every second.
Build Baremetal Demos and Update SD card
-----------------------------------------
+========================================
-1. Install MCU+ SDK `[Use Link] `__.
+#. Install MCU+ SDK `[Use Link] `__.
Refer MCU+ SDK benchmark demo user guide
`[Use Link] `__
on how to build demos.
-2. Once the R5F binaries are available, copy them to Linux file system in folder /lib/firmware/mcusdk-benchmark_demo/.
+#. Once the R5F binaries are available, copy them to Linux file system in folder :file:`/lib/firmware/mcusdk-benchmark_demo/`.
The copy step can only be done using a Linux machine since the Linux filesystem on the
SD card cannot be seen on a Windows machine. Once copied, make sure the soft links are pointing to the correct binaries.
Directory Structure
--------------------
-
-The source code can be found at `[this link] `__.
-
-+------+--------------------------------------------------+----------------------------------------------------------------------------------------+
-| | **Directory Name** | **Description** |
-+======+==================================================+========================================================================================+
-| 1 | apps/benchmark\_demo/webserver\_app/app | GUI code and component files |
-+------+--------------------------------------------------+----------------------------------------------------------------------------------------+
-| 2 | apps/benchmark\_demo/webserver\_app/linux\_app | Linux application code handles the IPC RPMsg\_char and the JSON file update for A53 |
-+------+--------------------------------------------------+----------------------------------------------------------------------------------------+
-| 3 | apps/benchmark\_demo/webserver\_app/webserver | Web server and node files |
-+------+--------------------------------------------------+----------------------------------------------------------------------------------------+
+===================
+
+The source code can be found at `[this link] `__.
+
+.. list-table:: Directory Structure
+ :widths: 25 75
+ :header-rows: 1
+
+ * - **Directory Name**
+ - **Description**
+ * - :file:`common/app/`
+ - GUI code
+ * - :file:`common/app/demos/benchmark/`
+ - Web page load code
+ * - :file:`devices/am64xx/linux_app/`
+ - Linux application code handles the IPC ``RPMsg_char`` and the JSON file update for A53
+ * - :file:`demos/benchmark/`
+ - Web server and node files