diff options
| author | Chase Maupin <Chase.Maupin@ti.com> | 2013-04-18 13:10:00 -0500 |
|---|---|---|
| committer | Denys Dmytriyenko <denys@ti.com> | 2013-04-18 15:44:04 -0400 |
| commit | 14a312f1e9d724d61d163d9872d7f6542ee180b9 (patch) | |
| tree | 0cac3f09ae2366f3168ac6897e91dcc20625d0eb /recipes-bsp/ti | |
| parent | 05d5325de7224d62738edc2ade07a6d645366d70 (diff) | |
| download | meta-ti-14a312f1e9d724d61d163d9872d7f6542ee180b9.tar.gz | |
am33x-cm3: use init script to load firmware
* The PM firmware is now loaded using an init script so make
the init script installation part of the firmware package.
* Fix up the SRC_URI to the proper format.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/ti')
| -rw-r--r-- | recipes-bsp/ti/am33x-cm3/init-am33x-cm3 | 6 | ||||
| -rw-r--r-- | recipes-bsp/ti/am33x-cm3_git.bb | 17 |
2 files changed, 21 insertions, 2 deletions
diff --git a/recipes-bsp/ti/am33x-cm3/init-am33x-cm3 b/recipes-bsp/ti/am33x-cm3/init-am33x-cm3 new file mode 100644 index 00000000..56c17b33 --- /dev/null +++ b/recipes-bsp/ti/am33x-cm3/init-am33x-cm3 | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | # Load the PM CM3 firmware | ||
| 4 | echo 1 > /sys/devices/ocp.2/44d00000.wkup_m3/firmware/am335x-pm-firmware.bin/loading | ||
| 5 | cat /lib/firmware/am335x-pm-firmware.bin > /sys/devices/ocp.2/44d00000.wkup_m3/firmware/am335x-pm-firmware.bin/data | ||
| 6 | echo 0 > /sys/devices/ocp.2/44d00000.wkup_m3/firmware/am335x-pm-firmware.bin/loading | ||
diff --git a/recipes-bsp/ti/am33x-cm3_git.bb b/recipes-bsp/ti/am33x-cm3_git.bb index 247ba4d8..169789e5 100644 --- a/recipes-bsp/ti/am33x-cm3_git.bb +++ b/recipes-bsp/ti/am33x-cm3_git.bb | |||
| @@ -4,9 +4,18 @@ LICENSE = "TI-BSD" | |||
| 4 | LIC_FILES_CHKSUM = "file://License.txt;md5=858099c817e47ea63559fc6b67ae8d91" | 4 | LIC_FILES_CHKSUM = "file://License.txt;md5=858099c817e47ea63559fc6b67ae8d91" |
| 5 | 5 | ||
| 6 | PV = "04.06.00.07" | 6 | PV = "04.06.00.07" |
| 7 | PR = "r1" | ||
| 7 | SRCREV = "cf07b841d6e8c5e026eecb259d143f3dff412c8e" | 8 | SRCREV = "cf07b841d6e8c5e026eecb259d143f3dff412c8e" |
| 9 | BRANCH ?= "master" | ||
| 8 | 10 | ||
| 9 | SRC_URI = "git://arago-project.org/git/projects/am33x-cm3.git" | 11 | INITSCRIPT_NAME = "am335x-pm-firmware-load" |
| 12 | INITSCRIPT_PARAMS = "defaults 96" | ||
| 13 | |||
| 14 | inherit update-rc.d | ||
| 15 | |||
| 16 | SRC_URI = "git://arago-project.org/git/projects/am33x-cm3.git;protocol=git;branch=${BRANCH} \ | ||
| 17 | file://init-am33x-cm3 \ | ||
| 18 | " | ||
| 10 | 19 | ||
| 11 | S = "${WORKDIR}/git" | 20 | S = "${WORKDIR}/git" |
| 12 | 21 | ||
| @@ -17,7 +26,11 @@ do_compile() { | |||
| 17 | do_install() { | 26 | do_install() { |
| 18 | install -d ${D}${base_libdir}/firmware | 27 | install -d ${D}${base_libdir}/firmware |
| 19 | install -m 0644 bin/am335x-pm-firmware.bin ${D}${base_libdir}/firmware/ | 28 | install -m 0644 bin/am335x-pm-firmware.bin ${D}${base_libdir}/firmware/ |
| 29 | |||
| 30 | # Install the init script to load the PM firmware at boot | ||
| 31 | install -d ${D}${sysconfdir}/init.d | ||
| 32 | install -m 0755 ${WORKDIR}/init-am33x-cm3 ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME} | ||
| 20 | } | 33 | } |
| 21 | 34 | ||
| 22 | FILES_${PN} = "${base_libdir}/firmware" | 35 | FILES_${PN} += "${base_libdir}/firmware" |
| 23 | 36 | ||
