* [PATCH 1/2] recipes-bsp: Add recipe for PowerVR SGX544MP2 kernel drivers
@ 2013-07-01 12:31 Mrinmayee Hingolikar
2013-07-01 13:41 ` Maupin, Chase
0 siblings, 1 reply; 4+ messages in thread
From: Mrinmayee Hingolikar @ 2013-07-01 12:31 UTC (permalink / raw)
To: meta-ti
* The PowerVR SGX544MP2 is found on omap5 and dra7xx devices. This
recipe adds support for the PowerVR graphics subsystem.
Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
Signed-off-by: Siddharth Heroor <heroor@ti.com>
---
.../powervr-drivers/omapdrm-pvr_1.9.2253347.bb | 42 ++++++++++++++++++++
1 files changed, 42 insertions(+), 0 deletions(-)
create mode 100644 recipes-bsp/powervr-drivers/omapdrm-pvr_1.9.2253347.bb
diff --git a/recipes-bsp/powervr-drivers/omapdrm-pvr_1.9.2253347.bb b/recipes-bsp/powervr-drivers/omapdrm-pvr_1.9.2253347.bb
new file mode 100644
index 0000000..edb2682
--- /dev/null
+++ b/recipes-bsp/powervr-drivers/omapdrm-pvr_1.9.2253347.bb
@@ -0,0 +1,42 @@
+DESCRIPTION = "Kernel drivers for the PowerVR SGX chipset found in the omap5 SoCs"
+HOMEPAGE = "http://git.ti.com"
+LICENSE = "GPLv2"
+
+LIC_FILES_CHKSUM = "file://MIT-COPYING;md5=8c2810fa6bfdc5ae5c15a0c1ade34054"
+
+inherit module
+
+SRC_URI = "git://git.ti.com/graphics/omap5-sgx-ddk-linux.git;protocol=git"
+S = "${WORKDIR}/git"
+
+SRCREV = "6668f4ea0bbf7e3df7f72dc2230ab8da1e748b2d"
+PR = "${MACHINE_KERNEL_PR}"
+
+do_compile() {
+ cd ${S}/eurasiacon/build/linux2/omap5430_linux
+ oe_runmake KERNELDIR="${STAGING_KERNEL_DIR}"
+}
+
+do_install() {
+ mkdir -p ${D}/lib/modules/${KERNEL_VERSION}/extra/
+ cp ${S}/eurasiacon/binary2_omap5430_linux_release/target/kbuild/omapdrm_pvr.ko \
+ ${D}/lib/modules/${KERNEL_VERSION}/extra/
+}
+
+FILES_omapdrm-pvr = "/lib/modules/${KERNEL_VERSION}/extra/omapdrm_pvr.ko"
+RDEPENDS_omapdrm-pvr += "update-modules"
+
+pkg_postinst_omapdrm-pvr () {
+#!/bin/sh
+if [ -n "$D" ]; then
+ exit 1
+fi
+
+depmod -a
+update-modules || true
+}
+
+pkg_postrm_omapdrm-pvr () {
+#!/bin/sh
+update-modules || true
+}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] recipes-bsp: Add recipe for PowerVR SGX544MP2 kernel drivers
2013-07-01 12:31 [PATCH 1/2] recipes-bsp: Add recipe for PowerVR SGX544MP2 kernel drivers Mrinmayee Hingolikar
@ 2013-07-01 13:41 ` Maupin, Chase
2013-07-23 17:11 ` Denys Dmytriyenko
0 siblings, 1 reply; 4+ messages in thread
From: Maupin, Chase @ 2013-07-01 13:41 UTC (permalink / raw)
To: Hingolikar, Mrinmayee, meta-ti@yoctoproject.org
>-----Original Message-----
>From: meta-ti-bounces@yoctoproject.org [mailto:meta-ti-
>bounces@yoctoproject.org] On Behalf Of Hingolikar, Mrinmayee
>Sent: Monday, July 01, 2013 7:32 AM
>To: meta-ti@yoctoproject.org
>Subject: [meta-ti] [PATCH 1/2] recipes-bsp: Add recipe for PowerVR
>SGX544MP2 kernel drivers
>
>* The PowerVR SGX544MP2 is found on omap5 and dra7xx devices. This
> recipe adds support for the PowerVR graphics subsystem.
>
>Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
>Signed-off-by: Siddharth Heroor <heroor@ti.com>
>---
> .../powervr-drivers/omapdrm-pvr_1.9.2253347.bb | 42
>++++++++++++++++++++
> 1 files changed, 42 insertions(+), 0 deletions(-)
> create mode 100644 recipes-bsp/powervr-drivers/omapdrm-
>pvr_1.9.2253347.bb
>
>diff --git a/recipes-bsp/powervr-drivers/omapdrm-
>pvr_1.9.2253347.bb b/recipes-bsp/powervr-drivers/omapdrm-
>pvr_1.9.2253347.bb
>new file mode 100644
>index 0000000..edb2682
>--- /dev/null
>+++ b/recipes-bsp/powervr-drivers/omapdrm-pvr_1.9.2253347.bb
>@@ -0,0 +1,42 @@
>+DESCRIPTION = "Kernel drivers for the PowerVR SGX chipset found
>in the omap5 SoCs"
>+HOMEPAGE = "http://git.ti.com"
>+LICENSE = "GPLv2"
>+
>+LIC_FILES_CHKSUM = "file://MIT-
>COPYING;md5=8c2810fa6bfdc5ae5c15a0c1ade34054"
I see an issue with you setting the LICENSE to GPLv2 but having the file you are checking be MIT-COPYING. This seems wrong.
>+
>+inherit module
>+
>+SRC_URI = "git://git.ti.com/graphics/omap5-sgx-ddk-
>linux.git;protocol=git"
>+S = "${WORKDIR}/git"
>+
>+SRCREV = "6668f4ea0bbf7e3df7f72dc2230ab8da1e748b2d"
>+PR = "${MACHINE_KERNEL_PR}"
>+
>+do_compile() {
>+ cd ${S}/eurasiacon/build/linux2/omap5430_linux
>+ oe_runmake KERNELDIR="${STAGING_KERNEL_DIR}"
>+}
I think you could do a do_compile_prepend here to perform the cd command and set EXTRA_OEMAKE to include the KERNELDIR setting. That way you don't have to override the entire do_compile function.
>+
>+do_install() {
>+ mkdir -p ${D}/lib/modules/${KERNEL_VERSION}/extra/
>+ cp
>${S}/eurasiacon/binary2_omap5430_linux_release/target/kbuild/omapd
>rm_pvr.ko \
>+ ${D}/lib/modules/${KERNEL_VERSION}/extra/
>+}
Can you not use the default do_install in the module.bbclass? As long as your makefile can handle modules_install you should be fine here.
>+
>+FILES_omapdrm-pvr =
>"/lib/modules/${KERNEL_VERSION}/extra/omapdrm_pvr.ko"
The FILES setting in module.bbclass should pick this us out of /lib/modules
>+RDEPENDS_omapdrm-pvr += "update-modules"
This RDEPENDS is already part of module.bbclass
>+
>+pkg_postinst_omapdrm-pvr () {
>+#!/bin/sh
>+if [ -n "$D" ]; then
>+ exit 1
>+fi
>+
>+depmod -a
>+update-modules || true
>+}
>+
>+pkg_postrm_omapdrm-pvr () {
>+#!/bin/sh
>+update-modules || true
Why did you need to define these functions? The module.bbclass that you inherit already has:
pkg_postinst_append () {
if [ -z "$D" ]; then
depmod -a
update-modules || true
fi
}
pkg_postrm_append () {
update-modules || true
}
Won't these work for you?
>+}
>--
>1.7.0.4
>
>_______________________________________________
>meta-ti mailing list
>meta-ti@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] recipes-bsp: Add recipe for PowerVR SGX544MP2 kernel drivers
2013-07-01 13:41 ` Maupin, Chase
@ 2013-07-23 17:11 ` Denys Dmytriyenko
2013-10-25 15:16 ` Enric Balletbo Serra
0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2013-07-23 17:11 UTC (permalink / raw)
To: Maupin, Chase; +Cc: meta-ti@yoctoproject.org
Ping for addressing Chase's comments?
On Mon, Jul 01, 2013 at 01:41:43PM +0000, Maupin, Chase wrote:
> >-----Original Message-----
> >From: meta-ti-bounces@yoctoproject.org [mailto:meta-ti-
> >bounces@yoctoproject.org] On Behalf Of Hingolikar, Mrinmayee
> >Sent: Monday, July 01, 2013 7:32 AM
> >To: meta-ti@yoctoproject.org
> >Subject: [meta-ti] [PATCH 1/2] recipes-bsp: Add recipe for PowerVR
> >SGX544MP2 kernel drivers
> >
> >* The PowerVR SGX544MP2 is found on omap5 and dra7xx devices. This
> > recipe adds support for the PowerVR graphics subsystem.
> >
> >Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
> >Signed-off-by: Siddharth Heroor <heroor@ti.com>
> >---
> > .../powervr-drivers/omapdrm-pvr_1.9.2253347.bb | 42
> >++++++++++++++++++++
> > 1 files changed, 42 insertions(+), 0 deletions(-)
> > create mode 100644 recipes-bsp/powervr-drivers/omapdrm-
> >pvr_1.9.2253347.bb
> >
> >diff --git a/recipes-bsp/powervr-drivers/omapdrm-
> >pvr_1.9.2253347.bb b/recipes-bsp/powervr-drivers/omapdrm-
> >pvr_1.9.2253347.bb
> >new file mode 100644
> >index 0000000..edb2682
> >--- /dev/null
> >+++ b/recipes-bsp/powervr-drivers/omapdrm-pvr_1.9.2253347.bb
> >@@ -0,0 +1,42 @@
> >+DESCRIPTION = "Kernel drivers for the PowerVR SGX chipset found
> >in the omap5 SoCs"
> >+HOMEPAGE = "http://git.ti.com"
> >+LICENSE = "GPLv2"
> >+
> >+LIC_FILES_CHKSUM = "file://MIT-
> >COPYING;md5=8c2810fa6bfdc5ae5c15a0c1ade34054"
>
> I see an issue with you setting the LICENSE to GPLv2 but having the file you
> are checking be MIT-COPYING. This seems wrong.
>
> >+
> >+inherit module
> >+
> >+SRC_URI = "git://git.ti.com/graphics/omap5-sgx-ddk-
> >linux.git;protocol=git"
> >+S = "${WORKDIR}/git"
> >+
> >+SRCREV = "6668f4ea0bbf7e3df7f72dc2230ab8da1e748b2d"
> >+PR = "${MACHINE_KERNEL_PR}"
> >+
> >+do_compile() {
> >+ cd ${S}/eurasiacon/build/linux2/omap5430_linux
> >+ oe_runmake KERNELDIR="${STAGING_KERNEL_DIR}"
> >+}
>
> I think you could do a do_compile_prepend here to perform the cd command and
> set EXTRA_OEMAKE to include the KERNELDIR setting. That way you don't have
> to override the entire do_compile function.
>
> >+
> >+do_install() {
> >+ mkdir -p ${D}/lib/modules/${KERNEL_VERSION}/extra/
> >+ cp
> >${S}/eurasiacon/binary2_omap5430_linux_release/target/kbuild/omapd
> >rm_pvr.ko \
> >+ ${D}/lib/modules/${KERNEL_VERSION}/extra/
> >+}
>
> Can you not use the default do_install in the module.bbclass? As long as
> your makefile can handle modules_install you should be fine here.
>
> >+
> >+FILES_omapdrm-pvr =
> >"/lib/modules/${KERNEL_VERSION}/extra/omapdrm_pvr.ko"
>
> The FILES setting in module.bbclass should pick this us out of /lib/modules
>
> >+RDEPENDS_omapdrm-pvr += "update-modules"
>
> This RDEPENDS is already part of module.bbclass
>
> >+
> >+pkg_postinst_omapdrm-pvr () {
> >+#!/bin/sh
> >+if [ -n "$D" ]; then
> >+ exit 1
> >+fi
> >+
> >+depmod -a
> >+update-modules || true
> >+}
> >+
> >+pkg_postrm_omapdrm-pvr () {
> >+#!/bin/sh
> >+update-modules || true
>
> Why did you need to define these functions? The module.bbclass that you
> inherit already has:
>
> pkg_postinst_append () {
> if [ -z "$D" ]; then
> depmod -a
> update-modules || true
> fi
> }
>
> pkg_postrm_append () {
> update-modules || true
> }
>
> Won't these work for you?
>
> >+}
> >--
> >1.7.0.4
> >
> >_______________________________________________
> >meta-ti mailing list
> >meta-ti@yoctoproject.org
> >https://lists.yoctoproject.org/listinfo/meta-ti
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] recipes-bsp: Add recipe for PowerVR SGX544MP2 kernel drivers
2013-07-23 17:11 ` Denys Dmytriyenko
@ 2013-10-25 15:16 ` Enric Balletbo Serra
0 siblings, 0 replies; 4+ messages in thread
From: Enric Balletbo Serra @ 2013-10-25 15:16 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-ti@yoctoproject.org
Hi,
2013/7/23 Denys Dmytriyenko <denys@ti.com>:
> Ping for addressing Chase's comments?
>
> On Mon, Jul 01, 2013 at 01:41:43PM +0000, Maupin, Chase wrote:
>> >-----Original Message-----
>> >From: meta-ti-bounces@yoctoproject.org [mailto:meta-ti-
>> >bounces@yoctoproject.org] On Behalf Of Hingolikar, Mrinmayee
>> >Sent: Monday, July 01, 2013 7:32 AM
>> >To: meta-ti@yoctoproject.org
>> >Subject: [meta-ti] [PATCH 1/2] recipes-bsp: Add recipe for PowerVR
>> >SGX544MP2 kernel drivers
>> >
>> >* The PowerVR SGX544MP2 is found on omap5 and dra7xx devices. This
>> > recipe adds support for the PowerVR graphics subsystem.
>> >
>> >Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
>> >Signed-off-by: Siddharth Heroor <heroor@ti.com>
>> >---
>> > .../powervr-drivers/omapdrm-pvr_1.9.2253347.bb | 42
>> >++++++++++++++++++++
>> > 1 files changed, 42 insertions(+), 0 deletions(-)
>> > create mode 100644 recipes-bsp/powervr-drivers/omapdrm-
>> >pvr_1.9.2253347.bb
>> >
>> >diff --git a/recipes-bsp/powervr-drivers/omapdrm-
>> >pvr_1.9.2253347.bb b/recipes-bsp/powervr-drivers/omapdrm-
>> >pvr_1.9.2253347.bb
>> >new file mode 100644
>> >index 0000000..edb2682
>> >--- /dev/null
>> >+++ b/recipes-bsp/powervr-drivers/omapdrm-pvr_1.9.2253347.bb
>> >@@ -0,0 +1,42 @@
>> >+DESCRIPTION = "Kernel drivers for the PowerVR SGX chipset found
>> >in the omap5 SoCs"
>> >+HOMEPAGE = "http://git.ti.com"
>> >+LICENSE = "GPLv2"
>> >+
>> >+LIC_FILES_CHKSUM = "file://MIT-
>> >COPYING;md5=8c2810fa6bfdc5ae5c15a0c1ade34054"
>>
>> I see an issue with you setting the LICENSE to GPLv2 but having the file you
>> are checking be MIT-COPYING. This seems wrong.
>>
>> >+
>> >+inherit module
>> >+
>> >+SRC_URI = "git://git.ti.com/graphics/omap5-sgx-ddk-
>> >linux.git;protocol=git"
>> >+S = "${WORKDIR}/git"
>> >+
>> >+SRCREV = "6668f4ea0bbf7e3df7f72dc2230ab8da1e748b2d"
>> >+PR = "${MACHINE_KERNEL_PR}"
>> >+
>> >+do_compile() {
>> >+ cd ${S}/eurasiacon/build/linux2/omap5430_linux
>> >+ oe_runmake KERNELDIR="${STAGING_KERNEL_DIR}"
>> >+}
>>
>> I think you could do a do_compile_prepend here to perform the cd command and
>> set EXTRA_OEMAKE to include the KERNELDIR setting. That way you don't have
>> to override the entire do_compile function.
>>
>> >+
>> >+do_install() {
>> >+ mkdir -p ${D}/lib/modules/${KERNEL_VERSION}/extra/
>> >+ cp
>> >${S}/eurasiacon/binary2_omap5430_linux_release/target/kbuild/omapd
>> >rm_pvr.ko \
>> >+ ${D}/lib/modules/${KERNEL_VERSION}/extra/
>> >+}
>>
>> Can you not use the default do_install in the module.bbclass? As long as
>> your makefile can handle modules_install you should be fine here.
>>
>> >+
>> >+FILES_omapdrm-pvr =
>> >"/lib/modules/${KERNEL_VERSION}/extra/omapdrm_pvr.ko"
>>
>> The FILES setting in module.bbclass should pick this us out of /lib/modules
>>
>> >+RDEPENDS_omapdrm-pvr += "update-modules"
>>
>> This RDEPENDS is already part of module.bbclass
>>
>> >+
>> >+pkg_postinst_omapdrm-pvr () {
>> >+#!/bin/sh
>> >+if [ -n "$D" ]; then
>> >+ exit 1
>> >+fi
>> >+
>> >+depmod -a
>> >+update-modules || true
>> >+}
>> >+
>> >+pkg_postrm_omapdrm-pvr () {
>> >+#!/bin/sh
>> >+update-modules || true
>>
>> Why did you need to define these functions? The module.bbclass that you
>> inherit already has:
>>
>> pkg_postinst_append () {
>> if [ -z "$D" ]; then
>> depmod -a
>> update-modules || true
>> fi
>> }
>>
>> pkg_postrm_append () {
>> update-modules || true
>> }
>>
>> Won't these work for you?
>>
>> >+}
>> >--
>> >1.7.0.4
>> >
Against which kernel is expected that this driver builds successfully ?
I'm trying to build this driver against 3.8 from git.ti.com and seems
is not working.
eurasiacon/binary2_omap5430_linux_release/target/kbuild/services4/srvkm/env/linux/mmap.c:466:2:
error: implicit declaration of function 'omap_gem_new_ext'
[-Werror=implicit-function-declaration]
return omap_gem_new_ext(dev, gsize, flags, paddr, pages, &gem_ops);
^
eurasiacon/binary2_omap5430_linux_release/target/kbuild/services4/srvkm/env/linux/mmap.c:1423:15:
error: variable 'gem_ops' has initializer but incomplete type
static struct omap_gem_vm_ops gem_ops = {
^
eurasiacon/binary2_omap5430_linux_release/target/kbuild/services4/srvkm/env/linux/mmap.c:1424:3:
error: unknown field 'open' specified in initializer
.open = MMapVOpenExt,
^
Best regards,
Enric
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-10-25 15:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-01 12:31 [PATCH 1/2] recipes-bsp: Add recipe for PowerVR SGX544MP2 kernel drivers Mrinmayee Hingolikar
2013-07-01 13:41 ` Maupin, Chase
2013-07-23 17:11 ` Denys Dmytriyenko
2013-10-25 15:16 ` Enric Balletbo Serra
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.