Skip to content

Commit fd009f9

Browse files
jmentipraneethbajjuri
authored andcommitted
fix(linux): Fix links in UG-Memory-K3
This patch fixes links in UG-Memory-K3 so the name of the links is changes from the default title name to 'here'. This is necessary to de-clutter the final html view. While we are here, add some indentation issues. Signed-off-by: Judith Mendez <[email protected]>
1 parent 799c923 commit fd009f9

File tree

2 files changed

+19
-18
lines changed

2 files changed

+19
-18
lines changed

source/linux/Foundational_Components/Kernel/Kernel_Drivers/Storage/MMC-SD.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,11 @@ Driver Configuration
250250
:name: building-into-kernel-mmcsd
251251

252252
Ensure that the following config options are set to 'y':
253-
* CONFIG_MMC
254-
* CONFIG_MMC_BLOCK
255-
* CONFIG_MMC_SDHCI
256-
* CONFIG_MMC_SDHCI_OMAP (for DRA7XX and AM57XX devices)
257-
* CONFIG_MMC_OMAP (for AM335X and AM437X devices)
253+
* CONFIG_MMC
254+
* CONFIG_MMC_BLOCK
255+
* CONFIG_MMC_SDHCI
256+
* CONFIG_MMC_SDHCI_OMAP (for DRA7XX and AM57XX devices)
257+
* CONFIG_MMC_OMAP (for AM335X and AM437X devices)
258258

259259
.. rubric:: **Building as Loadable Kernel Module**
260260

@@ -438,7 +438,7 @@ Driver Configuration
438438
pinctrl-0 = <&main_mmc1_pins_default>;
439439
ti,driver-strength-ohm = <50>;
440440
disable-wp;
441-
sdhci-caps-mask = <0x00000006 0x00000000>; /* Limiting to SDR50 speed mode */
441+
sdhci-caps-mask = <0x00000003 0x00000000>; /* Limiting to DDR50 speed mode */
442442
};
443443
444444
Limiting to SD HS speed mode can also be done by using the property

source/linux/Foundational_Components/U-Boot/UG-Memory-K3.rst

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The general syntax is:
6565
Where [dev] is the MMC device index.
6666

6767
The following lists examples and their explanation for each MMC device
68-
and partitions according to the example in: :ref:`uboot-listing-mmc-devices`.
68+
and partitions according to the example :ref:`here <uboot-listing-mmc-devices>`.
6969

7070
.. code-block:: console
7171
@@ -83,11 +83,10 @@ boot the device.
8383

8484
.. note::
8585

86-
For eMMC, typically, the device ships without a partition table If there is
87-
a need to create a partition in UDA (to flash the rootfs), please go to:
88-
:ref:`create-partitions-in-emmc-uda-from-linux` and format the partition:
89-
:ref:`formatting-mmc-partition-from-linux` before proceeding to look at the
90-
eMMC partition contents.
86+
For eMMC, typically, the device ships without a partition table If there is a need to
87+
create a partition in UDA, please go :ref:`here <create-partitions-in-emmc-uda-from-linux>`
88+
and to format the partition go :ref:`here <formatting-mmc-partition-from-linux>` before
89+
proceeding.
9190

9291
To list software created partitions for any MMC device from u-boot prompt, use the
9392
command: :command:`mmc part`.
@@ -345,6 +344,8 @@ set using the :command:`mmc bootbus` and :command:`mmc partconf` commands.
345344
346345
Where <dev> is MMC device index.
347346

347+
- For more information on these commands, please go `here <https://docs.u-boot.org/en/latest/usage/cmd/mmc.html//>`__.
348+
348349
.. _uboot-emmc-boot0-config:
349350

350351
Boot from Boot0
@@ -377,11 +378,11 @@ Boot from UDA
377378
378379
**Enable warm reset**
379380

380-
On eMMC devices, warm reset will not work if EXT_CSD[162] bit is unset since the
381-
reset input signal will be ignored. Warm reset is required to be enabled in order
382-
for the eMMC to be in a "clean state" on power-on reset so that ROM can do a clean
383-
enumeration. To set the EXT_CSD[162] bit, stop at u-boot prompt and execute the
384-
following command:
381+
On eMMC devices, warm reset will not work if EXT_CSD[162] bit is unset since the
382+
reset input signal will be ignored. Warm reset is required to be enabled in order
383+
for the eMMC to be in a "clean state" on power-on reset so that ROM can do
384+
a clean enumeration. To set the EXT_CSD[162] bit, stop at u-boot prompt and execute
385+
the following command:
385386

386387
.. code-block:: console
387388
@@ -390,7 +391,7 @@ following command:
390391
.. warning::
391392

392393
This is a write-once field. For more information, please refer to the u-boot
393-
doc: `MMC CMD <https://docs.u-boot.org/en/latest/usage/cmd/mmc.html//>`__.
394+
doc found `here <https://docs.u-boot.org/en/latest/usage/cmd/mmc.html//>`__.
394395

395396
Boot Linux from eMMC
396397
====================

0 commit comments

Comments
 (0)