public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
From: arnd@arndb.de (Arnd Bergmann)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 3/5] Documentation: Add documentation for the APM X-Gene SoC EDAC DTS binding
Date: Thu, 30 Apr 2015 14:52:52 +0200	[thread overview]
Message-ID: <17860828.NGjfVanSol@wuerfel> (raw)
In-Reply-To: <20150430123300.GE3488@pd.tnic>

On Thursday 30 April 2015 14:33:00 Borislav Petkov wrote:
> 
> > The point where it gets silly is when you try to handle multiple
> > unrelated devices in the same driver and you get a probe function
> > that just does:
> 
> Ok, what if they're related through RAS?
> 
> I.e., xgene_edac contains all RAS-specific functionality of the xgene IP
> blocks. This doesn't sound silly to me, frankly, and it concentrates it
> all in one place. Communication between blocks is trivial and there's no
> code duplication.

My point is that with the current implementation, there is no communication
at all: you have four separate drivers that just live in the same file.

> Other vendors using those IP blocks would simply add new DT descriptions.
> 
> > apm_edac_probe(struct platform_device *dev)
> > {
> >       if (dev_is_xgene_mc(dev))
> >               return apm_probe_xgene_mc(dev);
> >       if (dev_is_xgene_l2(dev))
> >               return apm_probe_xgene_l2(dev);
> >       if (dev_is_ygene_mc(dev))
> >               ...
> 
> So we do that on x86 - amd64_edac does AMD per-family setup and sb_edac
> too, for the last 4 Intel uarches. And it works just fine. So if "silly"
> is the only problem, I can certainly live with it.

This is different, because in your examples, there is still some shared
code between the CPU families, fact most of the driver looks like it's
shared, and even the family-specific code is mostly shared. E.g.
f1x_early_channel_count() is used on almost all families.

What I mean with silly is the case where none of the code behind those
is shared at all, and the only common part is the probe() function
that contains the multiplexer.

	Arnd

  reply	other threads:[~2015-04-30 12:52 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-28 22:10 [PATCH v7 0/4] edac: Add APM X-Gene SoC EDAC driver Loc Ho
2015-04-28 22:10 ` [PATCH v7 1/5] arm64: Enable EDAC on ARM64 Loc Ho
2015-04-28 22:10   ` [PATCH v7 2/5] MAINTAINERS: Add entry for APM X-Gene SoC EDAC driver Loc Ho
2015-04-28 22:10     ` [PATCH v7 3/5] Documentation: Add documentation for the APM X-Gene SoC EDAC DTS binding Loc Ho
2015-04-28 22:10       ` [PATCH v7 4/5] edac: Add APM X-Gene SoC EDAC driver Loc Ho
2015-04-28 22:10         ` [PATCH 5/5] arm64: Add APM X-Gene SoC EDAC DTS entries Loc Ho
2015-04-29  8:49         ` [PATCH v7 4/5] edac: Add APM X-Gene SoC EDAC driver Arnd Bergmann
2015-04-29 16:57           ` Rob Herring
2015-04-29 18:23             ` Arnd Bergmann
2015-04-29 17:00         ` Rob Herring
2015-04-29 16:47       ` [PATCH v7 3/5] Documentation: Add documentation for the APM X-Gene SoC EDAC DTS binding Rob Herring
2015-04-29 21:33         ` Loc Ho
2015-04-29 21:49           ` Borislav Petkov
2015-04-29 21:56             ` Loc Ho
2015-04-29 22:08               ` Borislav Petkov
2015-04-29 22:20                 ` Loc Ho
2015-04-29 23:02                 ` Rob Herring
2015-04-30  8:20                   ` Borislav Petkov
2015-04-30  8:31                     ` Arnd Bergmann
2015-04-30  8:45                       ` Borislav Petkov
2015-04-30  9:01                         ` Arnd Bergmann
2015-04-30  9:41                           ` Borislav Petkov
2015-04-30 10:21                             ` Arnd Bergmann
2015-04-30 12:33                               ` Borislav Petkov
2015-04-30 12:52                                 ` Arnd Bergmann [this message]
2015-04-30 10:42                             ` Arnd Bergmann
2015-04-30 13:00                               ` Borislav Petkov
2015-04-30 16:57                                 ` Loc Ho
2015-04-30 17:18                                   ` Borislav Petkov
2015-04-30 21:19                                     ` Loc Ho
2015-04-30 21:30                                       ` Borislav Petkov
2015-04-30 21:39                                         ` Loc Ho
2015-04-30 22:36                                       ` Rob Herring
2015-04-30 22:47                                         ` Arnd Bergmann
2015-05-01  6:44                                           ` Loc Ho
2015-04-30 22:59                                         ` Loc Ho
2015-05-01 19:59                                         ` Loc Ho
2015-05-04 22:36                                           ` Rob Herring
2015-05-04 23:39                                             ` Loc Ho
2015-04-29 22:43               ` Rob Herring
2015-04-30  0:47                 ` Loc Ho
2015-04-29 14:40   ` [PATCH v7 1/5] arm64: Enable EDAC on ARM64 Catalin Marinas
2015-04-29 14:46     ` Jon Masters
2015-04-29 21:39     ` Loc Ho

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=17860828.NGjfVanSol@wuerfel \
    --to=arnd@arndb.de \
    --cc=linux-arm-kernel@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox