From: Denys Dmytriyenko <denys@ti.com>
To: "Ruei, Eric" <e-ruei1@ti.com>
Cc: "meta-arago@arago-project.org" <meta-arago@arago-project.org>
Subject: Re: [PATCH] Enhance kmscube demo to support AM3
Date: Tue, 1 Mar 2016 17:42:37 -0500 [thread overview]
Message-ID: <20160301224237.GA5889@edge> (raw)
In-Reply-To: <009C030982313E4589C6BC55FBF1E82A14232505@DFLE09.ent.ti.com>
Eric,
Will you be re-submitting the patch with the corrected subject?
--
Denys
On Thu, Feb 25, 2016 at 03:04:45PM -0500, Ruei, Eric wrote:
> Hi, Denys:
>
> Yes, the one should be applied to GLSDK.
>
> Best regards,
>
> Eric
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Thursday, February 25, 2016 2:41 PM
> To: Ruei, Eric
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH] Enhance kmscube demo to support AM3
>
> Eric,
>
> Any plans to upstream patches to GLSDK repo?
>
> Karthik,
>
> Who owns that repo and would you be willing to take them up?
>
> --
> Denys
>
>
> On Thu, Feb 25, 2016 at 02:31:19PM -0500, Eric Ruei wrote:
> > Enable AM3 support by adding "tilcdc" to the modules list at kmscube.c
> >
> >
> > Signed-off-by: Eric Ruei <e-ruei1@ti.com>
> > ---
> > ...001-kmscube.c-init_drm-enable-AM3-support.patch | 28 ++++++++++++++++++++++
> > .../recipes-graphics/kmscube/kmscube_1.0.0.bb | 9 +++----
> > 2 files changed, 33 insertions(+), 4 deletions(-)
> > create mode 100644 meta-arago-extras/recipes-graphics/kmscube/kmscube/0001-kmscube.c-init_drm-enable-AM3-support.patch
> >
> > diff --git a/meta-arago-extras/recipes-graphics/kmscube/kmscube/0001-kmscube.c-init_drm-enable-AM3-support.patch b/meta-arago-extras/recipes-graphics/kmscube/kmscube/0001-kmscube.c-init_drm-enable-AM3-support.patch
> > new file mode 100644
> > index 0000000..64b7b04
> > --- /dev/null
> > +++ b/meta-arago-extras/recipes-graphics/kmscube/kmscube/0001-kmscube.c-init_drm-enable-AM3-support.patch
> > @@ -0,0 +1,28 @@
> > +From 82a3cc3ddec96fba7204f5ecab0890801a0b54b4 Mon Sep 17 00:00:00 2001
> > +From: Eric Ruei <e-ruei1@ti.com>
> > +Date: Thu, 25 Feb 2016 09:49:24 -0500
> > +Subject: [PATCH] kmscube.c: init_drm(): enable AM3 support
> > +
> > +Enable AM3 support by adding "tilcdc" to the modules list.
> > +
> > +Signed-off-by: Eric Ruei <e-ruei1@ti.com>
> > +---
> > + kmscube.c | 2 +-
> > + 1 file changed, 1 insertion(+), 1 deletion(-)
> > +
> > +diff --git a/kmscube.c b/kmscube.c
> > +index 5a18c32..919b3e7 100644
> > +--- a/kmscube.c
> > ++++ b/kmscube.c
> > +@@ -84,7 +84,7 @@ struct drm_fb {
> > + static int init_drm(void)
> > + {
> > + static const char *modules[] = {
> > +- "omapdrm", "i915", "radeon", "nouveau", "vmwgfx", "exynos"
> > ++ "omapdrm", "tilcdc", "i915", "radeon", "nouveau", "vmwgfx", "exynos"
> > + };
> > + drmModeRes *resources;
> > + drmModeConnector *connector = NULL;
> > +--
> > +1.9.1
> > +
> > diff --git a/meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb b/meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb
> > index 484a46b..138a55b 100644
> > --- a/meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb
> > +++ b/meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb
> > @@ -5,18 +5,19 @@ LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=e760965096e52da8
> >
> > DEPENDS = "libdrm libgbm omap5-sgx-ddk-um-linux"
> >
> > -COMPATIBLE_MACHINE = "ti43x|omap-a15"
> > +COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15"
> > PACKAGE_ARCH = "${MACHINE_ARCH}"
> >
> > inherit autotools pkgconfig
> >
> > -PR = "r4"
> > +PR = "r5"
> > SRCREV = "1c8a0d26c5b1918432fd94d2ac9894b3dcdb2814"
> >
> > SRC_URI = "git://git.ti.com/glsdk/kmscube.git;protocol=git"
> >
> > -SRC_URI_append_ti43x = " \
> > - file://0001-kmscube.c-init_drm-select-the-current-CRTC-display-m.patch \
> > +SRC_URI_append = " \
> > + file://0001-kmscube.c-init_drm-select-the-current-CRTC-display-m.patch \
> > + file://0001-kmscube.c-init_drm-enable-AM3-support.patch \
> > "
> >
> > S = "${WORKDIR}/git"
> > --
> > 1.9.1
> >
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
prev parent reply other threads:[~2016-03-01 22:42 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-25 19:31 [PATCH] Enhance kmscube demo to support AM3 Eric Ruei
2016-02-25 19:41 ` Denys Dmytriyenko
2016-02-25 20:04 ` Ruei, Eric
2016-03-01 22:42 ` Denys Dmytriyenko [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160301224237.GA5889@edge \
--to=denys@ti.com \
--cc=e-ruei1@ti.com \
--cc=meta-arago@arago-project.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.