* [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo @ 2017-03-13 18:57 Manisha Agrawal 2017-03-14 22:27 ` Denys Dmytriyenko 0 siblings, 1 reply; 6+ messages in thread From: Manisha Agrawal @ 2017-03-13 18:57 UTC (permalink / raw) To: meta-arago Add new demo to Processor Linux SDK. This demo is package along with source code in PLSDK and binary available under /usr/bin folder of the filesystem. The demo is target to showcase AM57x Display Sub System capabilities, 2D graphics accelerator GC320 video API usage for overlay and QT drawing using 3D graphics accelerator. In this particular release the demo is showing the DRM API usage for scaling and overlaying using DSS and special QT QPA eglfs-kms for rendering using SGX. QT is the master of the drm resource but shares the handle with application too. Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com> --- .../conf/distro/arago-source-ipk.conf | 3 +++ .../ti-tisdk-makefile/Makefile_video-graphics-test | 24 +++++++++++++++++++ .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 1 + .../video-graphics-test/video-graphics-test_1.0.bb | 28 ++++++++++++++++++++++ 4 files changed, 56 insertions(+) create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test create mode 100644 meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb diff --git a/meta-arago-distro/conf/distro/arago-source-ipk.conf b/meta-arago-distro/conf/distro/arago-source-ipk.conf index 96f2db2..5941519 100644 --- a/meta-arago-distro/conf/distro/arago-source-ipk.conf +++ b/meta-arago-distro/conf/distro/arago-source-ipk.conf @@ -67,6 +67,9 @@ SRCIPK_INSTALL_DIR_pn-qt-tstat = "example-applications/${PN}-${PV}" CREATE_SRCIPK_pn-dual-camera-demo = "1" SRCIPK_INSTALL_DIR_pn-dual-camera-demo = "example-applications/${PN}-${PV}" +CREATE_SRCIPK_pn-video-graphics-test = "1" +SRCIPK_INSTALL_DIR_pn-video-graphics-test = "example-applications/${PN}-${PV}" + CREATE_SRCIPK_pn-image-gallery = "1" SRCIPK_INSTALL_DIR_pn-image-gallery = "example-applications/${PN}" diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test new file mode 100644 index 0000000..1ffc395 --- /dev/null +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test @@ -0,0 +1,24 @@ +# QT Video Graphics build targets +video-graphics-test: + @echo ================================ + @echo Building Video Graphics Test + @echo ================================ + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build + +video-graphics-test_clean: + @echo ================================ + @echo Building Video Graphics Test + @echo ================================ + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build clean + +video-graphics-test_install: + @echo =================================================== + @echo Installing Video Graphics Test - Release version + @echo =================================================== + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install + +video-graphics-test_install_debug: + @echo ================================================= + @echo Installing Video Graphics Test - Debug version + @echo ================================================= + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install_debug diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb index 202078c..40ba3be 100644 --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb @@ -31,6 +31,7 @@ SRC_URI = "\ file://Makefile_omapconf \ file://Makefile_oprofile-example \ file://Makefile_dual-camera-demo \ + file://Makefile_video-graphics-test \ file://Makefile_image-gallery \ file://Makefile_cryptodev \ file://Makefile_cmem-mod \ diff --git a/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb new file mode 100644 index 0000000..4e428b2 --- /dev/null +++ b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "Test applications for video and graphics interface" +HOMEPAGE = "https://git.ti.com/sitara-linux/video-graphics-test" +SECTION = "multimedia" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=c7ca707704d3354a64feeb4f19f52eb5" + +DEPENDS += "libdrm" + +PR = "r0" + +BRANCH = "master" +SRCREV = "ebc7ab44d05fc726b0ddc7f4b45d71d7509313f5" + +SRC_URI = "git://git.ti.com/sitara-linux/video-graphics-test.git;protocol=git;branch=${BRANCH} \ +" + +S = "${WORKDIR}/git" + +inherit qt-provider + +export SDK_PATH_TARGET='${STAGING_DIR_HOST}' + +# use the make targets already created in the Makefile.build files +do_install() { + install -d ${D}/usr/bin + install video_graphics_test ${D}/usr/bin/video-graphics-test +} + -- 2.9.3 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo 2017-03-13 18:57 [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo Manisha Agrawal @ 2017-03-14 22:27 ` Denys Dmytriyenko 2017-03-16 19:16 ` Agrawal, Manisha 0 siblings, 1 reply; 6+ messages in thread From: Denys Dmytriyenko @ 2017-03-14 22:27 UTC (permalink / raw) To: Manisha Agrawal; +Cc: meta-arago Manisha, Thanks for the patch. This should rather be 2 or 3 patches - adding the new recipe, adding src-ipk and then patching the tisdk-makefile. Moreover, this won't apply to morty/master due to this change: http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=d28779a38e75bf3e096a5a7b0cf160d7520f4aca -- Denys On Mon, Mar 13, 2017 at 01:57:55PM -0500, Manisha Agrawal wrote: > Add new demo to Processor Linux SDK. This demo is package along with > source code in PLSDK and binary available under /usr/bin folder of the > filesystem. The demo is target to showcase AM57x Display Sub System > capabilities, 2D graphics accelerator GC320 video API usage for overlay > and QT drawing using 3D graphics accelerator. In this particular release > the demo is showing the DRM API usage for scaling and overlaying using > DSS and special QT QPA eglfs-kms for rendering using SGX. QT is the > master of the drm resource but shares the handle with application too. > > Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com> > --- > .../conf/distro/arago-source-ipk.conf | 3 +++ > .../ti-tisdk-makefile/Makefile_video-graphics-test | 24 +++++++++++++++++++ > .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 1 + > .../video-graphics-test/video-graphics-test_1.0.bb | 28 ++++++++++++++++++++++ > 4 files changed, 56 insertions(+) > create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > create mode 100644 meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > > diff --git a/meta-arago-distro/conf/distro/arago-source-ipk.conf b/meta-arago-distro/conf/distro/arago-source-ipk.conf > index 96f2db2..5941519 100644 > --- a/meta-arago-distro/conf/distro/arago-source-ipk.conf > +++ b/meta-arago-distro/conf/distro/arago-source-ipk.conf > @@ -67,6 +67,9 @@ SRCIPK_INSTALL_DIR_pn-qt-tstat = "example-applications/${PN}-${PV}" > CREATE_SRCIPK_pn-dual-camera-demo = "1" > SRCIPK_INSTALL_DIR_pn-dual-camera-demo = "example-applications/${PN}-${PV}" > > +CREATE_SRCIPK_pn-video-graphics-test = "1" > +SRCIPK_INSTALL_DIR_pn-video-graphics-test = "example-applications/${PN}-${PV}" > + > CREATE_SRCIPK_pn-image-gallery = "1" > SRCIPK_INSTALL_DIR_pn-image-gallery = "example-applications/${PN}" > > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > new file mode 100644 > index 0000000..1ffc395 > --- /dev/null > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > @@ -0,0 +1,24 @@ > +# QT Video Graphics build targets > +video-graphics-test: > + @echo ================================ > + @echo Building Video Graphics Test > + @echo ================================ > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build > + > +video-graphics-test_clean: > + @echo ================================ > + @echo Building Video Graphics Test > + @echo ================================ > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build clean > + > +video-graphics-test_install: > + @echo =================================================== > + @echo Installing Video Graphics Test - Release version > + @echo =================================================== > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install > + > +video-graphics-test_install_debug: > + @echo ================================================= > + @echo Installing Video Graphics Test - Debug version > + @echo ================================================= > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install_debug > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > index 202078c..40ba3be 100644 > --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > @@ -31,6 +31,7 @@ SRC_URI = "\ > file://Makefile_omapconf \ > file://Makefile_oprofile-example \ > file://Makefile_dual-camera-demo \ > + file://Makefile_video-graphics-test \ > file://Makefile_image-gallery \ > file://Makefile_cryptodev \ > file://Makefile_cmem-mod \ > diff --git a/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > new file mode 100644 > index 0000000..4e428b2 > --- /dev/null > +++ b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > @@ -0,0 +1,28 @@ > +DESCRIPTION = "Test applications for video and graphics interface" > +HOMEPAGE = "https://git.ti.com/sitara-linux/video-graphics-test" > +SECTION = "multimedia" > +LICENSE = "GPLv2" > +LIC_FILES_CHKSUM = "file://LICENSE;md5=c7ca707704d3354a64feeb4f19f52eb5" > + > +DEPENDS += "libdrm" > + > +PR = "r0" > + > +BRANCH = "master" > +SRCREV = "ebc7ab44d05fc726b0ddc7f4b45d71d7509313f5" > + > +SRC_URI = "git://git.ti.com/sitara-linux/video-graphics-test.git;protocol=git;branch=${BRANCH} \ > +" > + > +S = "${WORKDIR}/git" > + > +inherit qt-provider > + > +export SDK_PATH_TARGET='${STAGING_DIR_HOST}' > + > +# use the make targets already created in the Makefile.build files > +do_install() { > + install -d ${D}/usr/bin > + install video_graphics_test ${D}/usr/bin/video-graphics-test > +} > + > -- > 2.9.3 > > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo 2017-03-14 22:27 ` Denys Dmytriyenko @ 2017-03-16 19:16 ` Agrawal, Manisha 2017-03-16 19:25 ` Denys Dmytriyenko 0 siblings, 1 reply; 6+ messages in thread From: Agrawal, Manisha @ 2017-03-16 19:16 UTC (permalink / raw) To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org Hi Denys, I can make separate patches. What do you suggest for changes in meta-arago-distro/conf/distro/arago-source-ipk.conf?? Regards, Manisha -----Original Message----- From: Dmytriyenko, Denys Sent: Tuesday, March 14, 2017 5:28 PM To: Agrawal, Manisha Cc: meta-arago@arago-project.org Subject: Re: [meta-arago] [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo Manisha, Thanks for the patch. This should rather be 2 or 3 patches - adding the new recipe, adding src-ipk and then patching the tisdk-makefile. Moreover, this won't apply to morty/master due to this change: http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=d28779a38e75bf3e096a5a7b0cf160d7520f4aca -- Denys On Mon, Mar 13, 2017 at 01:57:55PM -0500, Manisha Agrawal wrote: > Add new demo to Processor Linux SDK. This demo is package along with > source code in PLSDK and binary available under /usr/bin folder of the > filesystem. The demo is target to showcase AM57x Display Sub System > capabilities, 2D graphics accelerator GC320 video API usage for overlay > and QT drawing using 3D graphics accelerator. In this particular release > the demo is showing the DRM API usage for scaling and overlaying using > DSS and special QT QPA eglfs-kms for rendering using SGX. QT is the > master of the drm resource but shares the handle with application too. > > Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com> > --- > .../conf/distro/arago-source-ipk.conf | 3 +++ > .../ti-tisdk-makefile/Makefile_video-graphics-test | 24 +++++++++++++++++++ > .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 1 + > .../video-graphics-test/video-graphics-test_1.0.bb | 28 ++++++++++++++++++++++ > 4 files changed, 56 insertions(+) > create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > create mode 100644 meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > > diff --git a/meta-arago-distro/conf/distro/arago-source-ipk.conf b/meta-arago-distro/conf/distro/arago-source-ipk.conf > index 96f2db2..5941519 100644 > --- a/meta-arago-distro/conf/distro/arago-source-ipk.conf > +++ b/meta-arago-distro/conf/distro/arago-source-ipk.conf > @@ -67,6 +67,9 @@ SRCIPK_INSTALL_DIR_pn-qt-tstat = "example-applications/${PN}-${PV}" > CREATE_SRCIPK_pn-dual-camera-demo = "1" > SRCIPK_INSTALL_DIR_pn-dual-camera-demo = "example-applications/${PN}-${PV}" > > +CREATE_SRCIPK_pn-video-graphics-test = "1" > +SRCIPK_INSTALL_DIR_pn-video-graphics-test = "example-applications/${PN}-${PV}" > + > CREATE_SRCIPK_pn-image-gallery = "1" > SRCIPK_INSTALL_DIR_pn-image-gallery = "example-applications/${PN}" > > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > new file mode 100644 > index 0000000..1ffc395 > --- /dev/null > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > @@ -0,0 +1,24 @@ > +# QT Video Graphics build targets > +video-graphics-test: > + @echo ================================ > + @echo Building Video Graphics Test > + @echo ================================ > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build > + > +video-graphics-test_clean: > + @echo ================================ > + @echo Building Video Graphics Test > + @echo ================================ > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build clean > + > +video-graphics-test_install: > + @echo =================================================== > + @echo Installing Video Graphics Test - Release version > + @echo =================================================== > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install > + > +video-graphics-test_install_debug: > + @echo ================================================= > + @echo Installing Video Graphics Test - Debug version > + @echo ================================================= > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install_debug > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > index 202078c..40ba3be 100644 > --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > @@ -31,6 +31,7 @@ SRC_URI = "\ > file://Makefile_omapconf \ > file://Makefile_oprofile-example \ > file://Makefile_dual-camera-demo \ > + file://Makefile_video-graphics-test \ > file://Makefile_image-gallery \ > file://Makefile_cryptodev \ > file://Makefile_cmem-mod \ > diff --git a/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > new file mode 100644 > index 0000000..4e428b2 > --- /dev/null > +++ b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > @@ -0,0 +1,28 @@ > +DESCRIPTION = "Test applications for video and graphics interface" > +HOMEPAGE = "https://git.ti.com/sitara-linux/video-graphics-test" > +SECTION = "multimedia" > +LICENSE = "GPLv2" > +LIC_FILES_CHKSUM = "file://LICENSE;md5=c7ca707704d3354a64feeb4f19f52eb5" > + > +DEPENDS += "libdrm" > + > +PR = "r0" > + > +BRANCH = "master" > +SRCREV = "ebc7ab44d05fc726b0ddc7f4b45d71d7509313f5" > + > +SRC_URI = "git://git.ti.com/sitara-linux/video-graphics-test.git;protocol=git;branch=${BRANCH} \ > +" > + > +S = "${WORKDIR}/git" > + > +inherit qt-provider > + > +export SDK_PATH_TARGET='${STAGING_DIR_HOST}' > + > +# use the make targets already created in the Makefile.build files > +do_install() { > + install -d ${D}/usr/bin > + install video_graphics_test ${D}/usr/bin/video-graphics-test > +} > + > -- > 2.9.3 > > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo 2017-03-16 19:16 ` Agrawal, Manisha @ 2017-03-16 19:25 ` Denys Dmytriyenko 2017-05-08 19:52 ` Denys Dmytriyenko 0 siblings, 1 reply; 6+ messages in thread From: Denys Dmytriyenko @ 2017-03-16 19:25 UTC (permalink / raw) To: Agrawal, Manisha; +Cc: meta-arago@arago-project.org On Thu, Mar 16, 2017 at 03:16:41PM -0400, Agrawal, Manisha wrote: > Hi Denys, > > I can make separate patches. Thanks. > What do you suggest for changes in meta-arago-distro/conf/distro/arago-source-ipk.conf?? That would require separate patches for krogoth vs. morty/master. > -----Original Message----- > From: Dmytriyenko, Denys > Sent: Tuesday, March 14, 2017 5:28 PM > To: Agrawal, Manisha > Cc: meta-arago@arago-project.org > Subject: Re: [meta-arago] [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo > > Manisha, > > Thanks for the patch. > > This should rather be 2 or 3 patches - adding the new recipe, adding src-ipk and then patching the tisdk-makefile. > > Moreover, this won't apply to morty/master due to this change: > http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=d28779a38e75bf3e096a5a7b0cf160d7520f4aca > > -- > Denys > > > On Mon, Mar 13, 2017 at 01:57:55PM -0500, Manisha Agrawal wrote: > > Add new demo to Processor Linux SDK. This demo is package along with > > source code in PLSDK and binary available under /usr/bin folder of the > > filesystem. The demo is target to showcase AM57x Display Sub System > > capabilities, 2D graphics accelerator GC320 video API usage for overlay > > and QT drawing using 3D graphics accelerator. In this particular release > > the demo is showing the DRM API usage for scaling and overlaying using > > DSS and special QT QPA eglfs-kms for rendering using SGX. QT is the > > master of the drm resource but shares the handle with application too. > > > > Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com> > > --- > > .../conf/distro/arago-source-ipk.conf | 3 +++ > > .../ti-tisdk-makefile/Makefile_video-graphics-test | 24 +++++++++++++++++++ > > .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 1 + > > .../video-graphics-test/video-graphics-test_1.0.bb | 28 ++++++++++++++++++++++ > > 4 files changed, 56 insertions(+) > > create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > > create mode 100644 meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > > > > diff --git a/meta-arago-distro/conf/distro/arago-source-ipk.conf b/meta-arago-distro/conf/distro/arago-source-ipk.conf > > index 96f2db2..5941519 100644 > > --- a/meta-arago-distro/conf/distro/arago-source-ipk.conf > > +++ b/meta-arago-distro/conf/distro/arago-source-ipk.conf > > @@ -67,6 +67,9 @@ SRCIPK_INSTALL_DIR_pn-qt-tstat = "example-applications/${PN}-${PV}" > > CREATE_SRCIPK_pn-dual-camera-demo = "1" > > SRCIPK_INSTALL_DIR_pn-dual-camera-demo = "example-applications/${PN}-${PV}" > > > > +CREATE_SRCIPK_pn-video-graphics-test = "1" > > +SRCIPK_INSTALL_DIR_pn-video-graphics-test = "example-applications/${PN}-${PV}" > > + > > CREATE_SRCIPK_pn-image-gallery = "1" > > SRCIPK_INSTALL_DIR_pn-image-gallery = "example-applications/${PN}" > > > > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > > new file mode 100644 > > index 0000000..1ffc395 > > --- /dev/null > > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > > @@ -0,0 +1,24 @@ > > +# QT Video Graphics build targets > > +video-graphics-test: > > + @echo ================================ > > + @echo Building Video Graphics Test > > + @echo ================================ > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build > > + > > +video-graphics-test_clean: > > + @echo ================================ > > + @echo Building Video Graphics Test > > + @echo ================================ > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build clean > > + > > +video-graphics-test_install: > > + @echo =================================================== > > + @echo Installing Video Graphics Test - Release version > > + @echo =================================================== > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install > > + > > +video-graphics-test_install_debug: > > + @echo ================================================= > > + @echo Installing Video Graphics Test - Debug version > > + @echo ================================================= > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install_debug > > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > > index 202078c..40ba3be 100644 > > --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > > @@ -31,6 +31,7 @@ SRC_URI = "\ > > file://Makefile_omapconf \ > > file://Makefile_oprofile-example \ > > file://Makefile_dual-camera-demo \ > > + file://Makefile_video-graphics-test \ > > file://Makefile_image-gallery \ > > file://Makefile_cryptodev \ > > file://Makefile_cmem-mod \ > > diff --git a/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > > new file mode 100644 > > index 0000000..4e428b2 > > --- /dev/null > > +++ b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > > @@ -0,0 +1,28 @@ > > +DESCRIPTION = "Test applications for video and graphics interface" > > +HOMEPAGE = "https://git.ti.com/sitara-linux/video-graphics-test" > > +SECTION = "multimedia" > > +LICENSE = "GPLv2" > > +LIC_FILES_CHKSUM = "file://LICENSE;md5=c7ca707704d3354a64feeb4f19f52eb5" > > + > > +DEPENDS += "libdrm" > > + > > +PR = "r0" > > + > > +BRANCH = "master" > > +SRCREV = "ebc7ab44d05fc726b0ddc7f4b45d71d7509313f5" > > + > > +SRC_URI = "git://git.ti.com/sitara-linux/video-graphics-test.git;protocol=git;branch=${BRANCH} \ > > +" > > + > > +S = "${WORKDIR}/git" > > + > > +inherit qt-provider > > + > > +export SDK_PATH_TARGET='${STAGING_DIR_HOST}' > > + > > +# use the make targets already created in the Makefile.build files > > +do_install() { > > + install -d ${D}/usr/bin > > + install video_graphics_test ${D}/usr/bin/video-graphics-test > > +} > > + > > -- > > 2.9.3 > > > > _______________________________________________ > > meta-arago mailing list > > meta-arago@arago-project.org > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo 2017-03-16 19:25 ` Denys Dmytriyenko @ 2017-05-08 19:52 ` Denys Dmytriyenko 2017-05-11 22:16 ` Agrawal, Manisha 0 siblings, 1 reply; 6+ messages in thread From: Denys Dmytriyenko @ 2017-05-08 19:52 UTC (permalink / raw) To: Agrawal, Manisha; +Cc: meta-arago@arago-project.org Manisha, Do you plan to follow up on this change? Did it go into PSDK release? Jake, Vivek, If you took it locally, do you plan to upstream it soon? -- Denys On Thu, Mar 16, 2017 at 03:25:39PM -0400, Denys Dmytriyenko wrote: > On Thu, Mar 16, 2017 at 03:16:41PM -0400, Agrawal, Manisha wrote: > > Hi Denys, > > > > I can make separate patches. > > Thanks. > > > > What do you suggest for changes in meta-arago-distro/conf/distro/arago-source-ipk.conf?? > > That would require separate patches for krogoth vs. morty/master. > > > > -----Original Message----- > > From: Dmytriyenko, Denys > > Sent: Tuesday, March 14, 2017 5:28 PM > > To: Agrawal, Manisha > > Cc: meta-arago@arago-project.org > > Subject: Re: [meta-arago] [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo > > > > Manisha, > > > > Thanks for the patch. > > > > This should rather be 2 or 3 patches - adding the new recipe, adding src-ipk and then patching the tisdk-makefile. > > > > Moreover, this won't apply to morty/master due to this change: > > http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=d28779a38e75bf3e096a5a7b0cf160d7520f4aca > > > > -- > > Denys > > > > > > On Mon, Mar 13, 2017 at 01:57:55PM -0500, Manisha Agrawal wrote: > > > Add new demo to Processor Linux SDK. This demo is package along with > > > source code in PLSDK and binary available under /usr/bin folder of the > > > filesystem. The demo is target to showcase AM57x Display Sub System > > > capabilities, 2D graphics accelerator GC320 video API usage for overlay > > > and QT drawing using 3D graphics accelerator. In this particular release > > > the demo is showing the DRM API usage for scaling and overlaying using > > > DSS and special QT QPA eglfs-kms for rendering using SGX. QT is the > > > master of the drm resource but shares the handle with application too. > > > > > > Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com> > > > --- > > > .../conf/distro/arago-source-ipk.conf | 3 +++ > > > .../ti-tisdk-makefile/Makefile_video-graphics-test | 24 +++++++++++++++++++ > > > .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 1 + > > > .../video-graphics-test/video-graphics-test_1.0.bb | 28 ++++++++++++++++++++++ > > > 4 files changed, 56 insertions(+) > > > create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > > > create mode 100644 meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > > > > > > diff --git a/meta-arago-distro/conf/distro/arago-source-ipk.conf b/meta-arago-distro/conf/distro/arago-source-ipk.conf > > > index 96f2db2..5941519 100644 > > > --- a/meta-arago-distro/conf/distro/arago-source-ipk.conf > > > +++ b/meta-arago-distro/conf/distro/arago-source-ipk.conf > > > @@ -67,6 +67,9 @@ SRCIPK_INSTALL_DIR_pn-qt-tstat = "example-applications/${PN}-${PV}" > > > CREATE_SRCIPK_pn-dual-camera-demo = "1" > > > SRCIPK_INSTALL_DIR_pn-dual-camera-demo = "example-applications/${PN}-${PV}" > > > > > > +CREATE_SRCIPK_pn-video-graphics-test = "1" > > > +SRCIPK_INSTALL_DIR_pn-video-graphics-test = "example-applications/${PN}-${PV}" > > > + > > > CREATE_SRCIPK_pn-image-gallery = "1" > > > SRCIPK_INSTALL_DIR_pn-image-gallery = "example-applications/${PN}" > > > > > > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > > > new file mode 100644 > > > index 0000000..1ffc395 > > > --- /dev/null > > > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > > > @@ -0,0 +1,24 @@ > > > +# QT Video Graphics build targets > > > +video-graphics-test: > > > + @echo ================================ > > > + @echo Building Video Graphics Test > > > + @echo ================================ > > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build > > > + > > > +video-graphics-test_clean: > > > + @echo ================================ > > > + @echo Building Video Graphics Test > > > + @echo ================================ > > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build clean > > > + > > > +video-graphics-test_install: > > > + @echo =================================================== > > > + @echo Installing Video Graphics Test - Release version > > > + @echo =================================================== > > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install > > > + > > > +video-graphics-test_install_debug: > > > + @echo ================================================= > > > + @echo Installing Video Graphics Test - Debug version > > > + @echo ================================================= > > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install_debug > > > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > > > index 202078c..40ba3be 100644 > > > --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > > > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > > > @@ -31,6 +31,7 @@ SRC_URI = "\ > > > file://Makefile_omapconf \ > > > file://Makefile_oprofile-example \ > > > file://Makefile_dual-camera-demo \ > > > + file://Makefile_video-graphics-test \ > > > file://Makefile_image-gallery \ > > > file://Makefile_cryptodev \ > > > file://Makefile_cmem-mod \ > > > diff --git a/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > > > new file mode 100644 > > > index 0000000..4e428b2 > > > --- /dev/null > > > +++ b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > > > @@ -0,0 +1,28 @@ > > > +DESCRIPTION = "Test applications for video and graphics interface" > > > +HOMEPAGE = "https://git.ti.com/sitara-linux/video-graphics-test" > > > +SECTION = "multimedia" > > > +LICENSE = "GPLv2" > > > +LIC_FILES_CHKSUM = "file://LICENSE;md5=c7ca707704d3354a64feeb4f19f52eb5" > > > + > > > +DEPENDS += "libdrm" > > > + > > > +PR = "r0" > > > + > > > +BRANCH = "master" > > > +SRCREV = "ebc7ab44d05fc726b0ddc7f4b45d71d7509313f5" > > > + > > > +SRC_URI = "git://git.ti.com/sitara-linux/video-graphics-test.git;protocol=git;branch=${BRANCH} \ > > > +" > > > + > > > +S = "${WORKDIR}/git" > > > + > > > +inherit qt-provider > > > + > > > +export SDK_PATH_TARGET='${STAGING_DIR_HOST}' > > > + > > > +# use the make targets already created in the Makefile.build files > > > +do_install() { > > > + install -d ${D}/usr/bin > > > + install video_graphics_test ${D}/usr/bin/video-graphics-test > > > +} > > > + > > > -- > > > 2.9.3 > > > > > > _______________________________________________ > > > meta-arago mailing list > > > meta-arago@arago-project.org > > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo 2017-05-08 19:52 ` Denys Dmytriyenko @ 2017-05-11 22:16 ` Agrawal, Manisha 0 siblings, 0 replies; 6+ messages in thread From: Agrawal, Manisha @ 2017-05-11 22:16 UTC (permalink / raw) To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org Denys, Jake took the changes locally. I am not sure if they plan to upstream the changes but I didn't take any further actions after our last email exchange on it. I shall rely on Jake to upstream it for me. If he is not able to do same for any reason, then I can take it. Regards, Manisha -----Original Message----- From: Dmytriyenko, Denys Sent: Monday, May 08, 2017 2:52 PM To: Agrawal, Manisha Cc: meta-arago@arago-project.org Subject: Re: [meta-arago] [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo Manisha, Do you plan to follow up on this change? Did it go into PSDK release? Jake, Vivek, If you took it locally, do you plan to upstream it soon? -- Denys On Thu, Mar 16, 2017 at 03:25:39PM -0400, Denys Dmytriyenko wrote: > On Thu, Mar 16, 2017 at 03:16:41PM -0400, Agrawal, Manisha wrote: > > Hi Denys, > > > > I can make separate patches. > > Thanks. > > > > What do you suggest for changes in meta-arago-distro/conf/distro/arago-source-ipk.conf?? > > That would require separate patches for krogoth vs. morty/master. > > > > -----Original Message----- > > From: Dmytriyenko, Denys > > Sent: Tuesday, March 14, 2017 5:28 PM > > To: Agrawal, Manisha > > Cc: meta-arago@arago-project.org > > Subject: Re: [meta-arago] [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo > > > > Manisha, > > > > Thanks for the patch. > > > > This should rather be 2 or 3 patches - adding the new recipe, adding src-ipk and then patching the tisdk-makefile. > > > > Moreover, this won't apply to morty/master due to this change: > > http://arago-project.org/git/?p=meta-arago.git;a=commitdiff;h=d28779a38e75bf3e096a5a7b0cf160d7520f4aca > > > > -- > > Denys > > > > > > On Mon, Mar 13, 2017 at 01:57:55PM -0500, Manisha Agrawal wrote: > > > Add new demo to Processor Linux SDK. This demo is package along with > > > source code in PLSDK and binary available under /usr/bin folder of the > > > filesystem. The demo is target to showcase AM57x Display Sub System > > > capabilities, 2D graphics accelerator GC320 video API usage for overlay > > > and QT drawing using 3D graphics accelerator. In this particular release > > > the demo is showing the DRM API usage for scaling and overlaying using > > > DSS and special QT QPA eglfs-kms for rendering using SGX. QT is the > > > master of the drm resource but shares the handle with application too. > > > > > > Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com> > > > --- > > > .../conf/distro/arago-source-ipk.conf | 3 +++ > > > .../ti-tisdk-makefile/Makefile_video-graphics-test | 24 +++++++++++++++++++ > > > .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 1 + > > > .../video-graphics-test/video-graphics-test_1.0.bb | 28 ++++++++++++++++++++++ > > > 4 files changed, 56 insertions(+) > > > create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > > > create mode 100644 meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > > > > > > diff --git a/meta-arago-distro/conf/distro/arago-source-ipk.conf b/meta-arago-distro/conf/distro/arago-source-ipk.conf > > > index 96f2db2..5941519 100644 > > > --- a/meta-arago-distro/conf/distro/arago-source-ipk.conf > > > +++ b/meta-arago-distro/conf/distro/arago-source-ipk.conf > > > @@ -67,6 +67,9 @@ SRCIPK_INSTALL_DIR_pn-qt-tstat = "example-applications/${PN}-${PV}" > > > CREATE_SRCIPK_pn-dual-camera-demo = "1" > > > SRCIPK_INSTALL_DIR_pn-dual-camera-demo = "example-applications/${PN}-${PV}" > > > > > > +CREATE_SRCIPK_pn-video-graphics-test = "1" > > > +SRCIPK_INSTALL_DIR_pn-video-graphics-test = "example-applications/${PN}-${PV}" > > > + > > > CREATE_SRCIPK_pn-image-gallery = "1" > > > SRCIPK_INSTALL_DIR_pn-image-gallery = "example-applications/${PN}" > > > > > > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > > > new file mode 100644 > > > index 0000000..1ffc395 > > > --- /dev/null > > > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_video-graphics-test > > > @@ -0,0 +1,24 @@ > > > +# QT Video Graphics build targets > > > +video-graphics-test: > > > + @echo ================================ > > > + @echo Building Video Graphics Test > > > + @echo ================================ > > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build > > > + > > > +video-graphics-test_clean: > > > + @echo ================================ > > > + @echo Building Video Graphics Test > > > + @echo ================================ > > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build clean > > > + > > > +video-graphics-test_install: > > > + @echo =================================================== > > > + @echo Installing Video Graphics Test - Release version > > > + @echo =================================================== > > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install > > > + > > > +video-graphics-test_install_debug: > > > + @echo ================================================= > > > + @echo Installing Video Graphics Test - Debug version > > > + @echo ================================================= > > > + @cd example-applications; cd `find . -name "*video-graphics-test*"`; make -f Makefile.build install_debug > > > diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > > > index 202078c..40ba3be 100644 > > > --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > > > +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb > > > @@ -31,6 +31,7 @@ SRC_URI = "\ > > > file://Makefile_omapconf \ > > > file://Makefile_oprofile-example \ > > > file://Makefile_dual-camera-demo \ > > > + file://Makefile_video-graphics-test \ > > > file://Makefile_image-gallery \ > > > file://Makefile_cryptodev \ > > > file://Makefile_cmem-mod \ > > > diff --git a/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > > > new file mode 100644 > > > index 0000000..4e428b2 > > > --- /dev/null > > > +++ b/meta-arago-extras/recipes-multimedia/video-graphics-test/video-graphics-test_1.0.bb > > > @@ -0,0 +1,28 @@ > > > +DESCRIPTION = "Test applications for video and graphics interface" > > > +HOMEPAGE = "https://git.ti.com/sitara-linux/video-graphics-test" > > > +SECTION = "multimedia" > > > +LICENSE = "GPLv2" > > > +LIC_FILES_CHKSUM = "file://LICENSE;md5=c7ca707704d3354a64feeb4f19f52eb5" > > > + > > > +DEPENDS += "libdrm" > > > + > > > +PR = "r0" > > > + > > > +BRANCH = "master" > > > +SRCREV = "ebc7ab44d05fc726b0ddc7f4b45d71d7509313f5" > > > + > > > +SRC_URI = "git://git.ti.com/sitara-linux/video-graphics-test.git;protocol=git;branch=${BRANCH} \ > > > +" > > > + > > > +S = "${WORKDIR}/git" > > > + > > > +inherit qt-provider > > > + > > > +export SDK_PATH_TARGET='${STAGING_DIR_HOST}' > > > + > > > +# use the make targets already created in the Makefile.build files > > > +do_install() { > > > + install -d ${D}/usr/bin > > > + install video_graphics_test ${D}/usr/bin/video-graphics-test > > > +} > > > + > > > -- > > > 2.9.3 > > > > > > _______________________________________________ > > > meta-arago mailing list > > > meta-arago@arago-project.org > > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-05-11 22:16 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-03-13 18:57 [master/morty][PATCH] recipes-multimedia : video-graphics-test : new demo Manisha Agrawal 2017-03-14 22:27 ` Denys Dmytriyenko 2017-03-16 19:16 ` Agrawal, Manisha 2017-03-16 19:25 ` Denys Dmytriyenko 2017-05-08 19:52 ` Denys Dmytriyenko 2017-05-11 22:16 ` Agrawal, Manisha
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.