public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Randy Dunlap <rdunlap@infradead.org>
Cc: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>,
	Rob Landley <rob@landley.net>,
	linux-doc@vger.kernel.org,
	Sagar Arun Kamble <sagar.a.kamble@intel.com>,
	Daniel Vetter <daniel.vetter@ffwll.ch>,
	intel-gfx <intel-gfx@lists.freedesktop.org>,
	dri-devel <dri-devel@lists.freedesktop.org>,
	Alex Deucher <alexander.deucher@amd.com>,
	Dave Airlie <airlied@redhat.com>
Subject: Re: [PATCH 1/1] Documentation: drm: describing drm properties exposed by various drivers
Date: Fri, 01 Aug 2014 14:58:21 +0200	[thread overview]
Message-ID: <1989663.VGMKAdAlB9@avalon> (raw)
In-Reply-To: <53DAC035.4060507@infradead.org>

Hi Randy,

On Thursday 31 July 2014 15:16:21 Randy Dunlap wrote:
> On 05/12/14 11:04, Randy Dunlap wrote:
> > On 05/12/2014 08:54 AM, Daniel Vetter wrote:
> >> On Mon, May 12, 2014 at 08:23:45AM -0700, Randy Dunlap wrote:
> >>> On 05/12/2014 01:58 AM, Daniel Vetter wrote:
> >>>> On Mon, May 12, 2014 at 06:24:57PM +1000, Dave Airlie wrote:
> >>>>>>> If we decide to go for property documentation inside the source code
> >>>>>>> then I believe we'll have to create our own format, as creating a
> >>>>>>> properties table from kerneldoc information extracted from comments
> >>>>>>> is probably not possible.
> >>>>>> 
> >>>>>> Can comeone pick up the ball here and figure out what needs to be
> >>>>>> done?
> >>>>>> 
> >>>>>> The reason why I want a central place for the documentation is to
> >>>>>> force people to collaborate outside their own sandbox when adding
> >>>>>> properties. Whether that's docbook or some text file I don't care so
> >>>>>> much at this point. The fact that it's a central place should mandate
> >>>>>> that the patches changing it will go through dri-devel and so
> >>>>>> everyone should se them, and when adding new properties it would make
> >>>>>> the patch author more likely to look around a bit before adding
> >>>>>> another slighty incompatible version of the same property. If someone
> >>>>>> has a better suggestion how to encforce this I'm all ears.
> >>>>>> 
> >>>>>> Of course this idea can still fail if our esteemed maintainer merges
> >>>>>> stuff without checking for violations of this policy. Dave, any
> >>>>>> thoughts on the subject?
> >>>>> 
> >>>>> Yeah I'm happy to block merging stuff, if we can spot new properties
> >>>>> when stuff is posted on dri-devel, so much the better,
> >>>>> 
> >>>>> most drivers still send everything via dri-devel anyways, its only
> >>>>> really Intel I have to worry about so far,
> >>>> 
> >>>> I'll enforce that all prop stuff gets cc: dri-devel and that it has
> >>>> updates for the prop docs.
> >>>> 
> >>>>> But we should definitely add it to the new driver review checklist as
> >>>>> well.
> >>>>> 
> >>>>> I'm also on the side of this patch is ugly and makes my eyes burn,
> >>>>> please please get a plan to use something else ASAP, I'm willing to
> >>>>> merge this but I'm tempted to give it a lifetime of a kernel or two
> >>>>> before I burn it.
> >>>> 
> >>>> Ok, I'll try to move "make kerneldoc suck less" up the task list and
> >>>> maybe find someone to do it for me internally ;-)
> >>> 
> >>> I certainly have no objections to making kerneldoc suck less.
> >>> There was already an attempt to use asciidoc (like git uses) for
> >>> kernel-doc (a few years ago, by Sam Ravnborg).  I support(ed) that
> >>> effort.
> >> 
> >> Hm, do you have pointers to those? My google-fu seems lacking ...
> > 
> > I googled for /kernel doc asciidoc ravnborg/ and found several hits for
> > them.
> >
> >> Ok, let's move this to the top and start discussions. The past few months
> >> I've written piles of kerneldoc comments for the DRM DocBook (all pulled
> >> in as kerneldoc, docbook .tmpl has just the chapter structure). DOC:
> >> sections are really useful to pull all the actual documentation out of
> >> the docbook xml into kerneldoc.
> >> 
> >> But I've also done piles of docs for intel-gpu-tools, which is using
> >> gtkdoc. And there are some clear deficiencies:
> >> 
> >> - No markdown for inline coments. Lack of lists and tables is hurting
> >>   especially badly. If we add this (and I don't care one iota whether
> >>   it's
> > 
> > Yes, I've tried to add lists to kernel-doc notation but have failed so
> > far.
> > 
> >>   markdown or asciidoc or something else as long as it's readable plain
> >>   text in comments) we should be able to move all the existing docbook
> >>   xml paragraphs/lists/tables into kerneldoc comments.
> >> 
> >> - Automatic cross-referencing of functions. If you place e.g. function()
> >>   or #struct anywhere in a documentation comment gtk-doc automatically
> >>   inserts a hyperlink to the relevant documentation page across the
> >>   entire project. Really powerful and makes overview sections much more
> >>   useful entry points for beginners since they can easily jump back&forth
> >>   betweeen the high-level overview and low-level per-function
> >>   documentation.
> > 
> > That's a nice-to-have IMO, but a really nice one.
> > 
> >> - In a really perfect world it would help if kerneldoc could collect
> >>   structure member kerneldoc from per-member comments. Especially for
> >>   large structures with lots of comments this would bring the kerneldoc
> >>   and struct member much closer together.
> >> 
> >> So that's my wishlist.
> >> 
> >>> OTOH, I would only want to add another way to do kernel-doc if it can be
> >>> a full replacement for all of our docbook usage, i.e., it should provide
> >>> a way that we can eliminate docbook and stop using it completely.
> >> 
> >> Hm, I don't mind docbook at all, as long as all the real content is
> >> embedded into source files as kerneldoc and the docbook template just
> >> pulls in all the right bits and pieces. Even gtkdoc allos you to do that
> >> and pull in the different libararies (== header files with declarations
> >> for C) in the order you want. So imo the docbook toolchain is good enough
> >> for my needs.
> >> 
> >> Or what do you mean by getting rid of all docbook usage?
> > 
> > I meant no docbook style sheets, no 'xmlto', the whole ball of wax.
> > 
> > But primarily I don't want to see drivers/video/ using one set of doc
> > tools and drivers/media/ using another set and drivers/xyz/ using its own
> > set of tools, etc. etc. etc.
> 
> Hi Daniel and others,
> 
> I don't know what your plans are for drm docs (tables, etc.), but I think
> that I misspoke above.   My primary/major concern is that there be some
> useful documentation.  What form or format it is in is secondary.

I agree with you, there's no reason to block your patch just because we might 
get a better documentation tool at a still unknown point in the future. 
Daniel, are you fine with merging the documentation in DocBook format for now 
?

Randy, could you please check whether your patch still applies and rebase and 
resubmit it if it doesn't ?

> It's not a good thing that media DocBook is so different from all of the
> others, but it's OK.
> 
> It's not a good thing that drivers/lguest/ uses its own tools to extract
> comments from source files to create documentation, but it's OK -- at least
> it generates some (hopefully useful) documentation.
> 
> I also note that a new autofs doc file (not yet merged) uses markdown.
> 
> Please feel free to use kernel-doc or markdown or asciidoc or plain text. :)
> or even your own tools, even though that is less preferred.

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2014-08-01 12:58 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-05 10:56 [PATCH 1/1] Documentation: drm: describing drm properties exposed by various drivers sagar.a.kamble
2014-03-06  7:15 ` [PATCH v2 " sagar.a.kamble
2014-03-06 12:09   ` Ville Syrjälä
2014-03-06 14:01     ` Sagar Arun Kamble
2014-03-06 14:27       ` [PATCH v3 " sagar.a.kamble
2014-03-07 18:44         ` Randy Dunlap
2014-03-08  6:33         ` [PATCH v4 " sagar.a.kamble
2014-03-08  7:28           ` [PATCH v5 " sagar.a.kamble
2014-03-10 14:33             ` Laurent Pinchart
2014-03-11 10:37               ` [PATCH v6 " sagar.a.kamble
2014-03-11 11:22                 ` Laurent Pinchart
2014-03-11 14:25                   ` [PATCH v7 " sagar.a.kamble
2014-03-11 14:31                     ` Laurent Pinchart
2014-03-11 13:13                 ` [PATCH v6 " Deucher, Alexander
2014-03-11 14:07                   ` Sagar Arun Kamble
2014-03-06 14:41       ` [PATCH v3 " sagar.a.kamble
2014-03-10  5:21 ` [PATCH " Daniel Vetter
2014-03-10 14:36   ` Laurent Pinchart
2014-03-12 11:16     ` Sagar Arun Kamble
2014-03-12 11:25       ` Laurent Pinchart
2014-05-10 10:39         ` Ville Syrjälä
2014-05-10 10:56           ` Rob Clark
2014-05-12  6:07             ` Sagar Arun Kamble
2014-05-12  8:03               ` Daniel Vetter
2014-05-13  7:17                 ` Thierry Reding
2014-05-13  7:34                   ` Daniel Vetter
2014-05-13  9:05                     ` Thierry Reding
2014-05-13 11:02                     ` Laurent Pinchart
2014-05-13 11:51                       ` Daniel Vetter
2014-05-12  8:24           ` Dave Airlie
2014-05-12  8:58             ` Daniel Vetter
2014-05-12 15:23               ` Randy Dunlap
2014-05-12 15:54                 ` Daniel Vetter
2014-05-12 18:04                   ` Randy Dunlap
2014-07-31 22:16                     ` Randy Dunlap
2014-08-01 12:58                       ` Laurent Pinchart [this message]
2014-08-01 22:21                         ` Randy Dunlap
2014-08-04  7:30                         ` Daniel Vetter
2014-08-04 13:58                           ` Laurent Pinchart

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=1989663.VGMKAdAlB9@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=airlied@redhat.com \
    --cc=alexander.deucher@amd.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=laurent.pinchart+renesas@ideasonboard.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=rdunlap@infradead.org \
    --cc=rob@landley.net \
    --cc=sagar.a.kamble@intel.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox