public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
From: Dominik Brodowski <linux-X3ehHDuj6sIIGcDfoQAp7OTW4wlIGRCZ@public.gmane.org>
To: Shaohua Li <shaohua.li-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: acpi-dev
	<acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>,
	Len <len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
	Adam Belay <ambx1-IBH0VoN/3vPQT0dZR+AlfA@public.gmane.org>
Subject: Re: [RFC 0/2]convert ACPI driver model to Linux driver model
Date: Mon, 12 Sep 2005 19:57:41 +0200	[thread overview]
Message-ID: <20050912175741.GA15324@dominikbrodowski.de> (raw)
In-Reply-To: <1126502542.5153.17.camel-ECwVeV2eNyQD0+JXs3kMbRL4W9x8LtSr@public.gmane.org>

Hi,

On Mon, Sep 12, 2005 at 01:22:22PM +0800, Shaohua Li wrote:
> I'm sending the patches out not for merging but for comments. The
> patches try to convert ACPI driver model to Linux driver model. 

Excellent.

> 1. in my mind, acpi should export two sets of info in sysfs. One is
> current namespace subsystem, it should just export the firmware info.
> All acpi device/drivers related info don't export here. The other is
> ACPI bus. It's similar with other buses like PCI bus.

However, there is no physical ACPI bus. Therefore, it shouldn't exist in
/sys/devices/ or /sys/bus/. If they are platform devices (devices which can be
poked at some iomem or ioport address, but aren't on any specific bus), they
should be registered as platform devices; if these are system devices
(core devices for basic operation; can live with IRQs off for suspend and 
resume, or even require that) they should be registered as system devices.

> 2. I regard all devices which don't belong to physical buses in the DSDT
> as ACPI bus devices. Ideally, PCI devices, PNP devices & other devices
> should bind them to their physical buses.

Yes, exactly.

> Since many devices listed in
> DSDT aren't in ACPI bus, this makes it impossible to convert current
> acpi driver model into Linux style.

Indeed. For each device, you need to decide which bus it resides on:
> (CPU is in the bus)

No, CPUs are already registered as system devices. ( /sys/devices/system/cpu/ )
Don't insert them twice into the device tree, please

>  So I'd like to remove the namespace hotplug interface later.
Indeed, let's focus on this stuff later on.

So, let's look at the devices and where they should be registered. In most
cases, it is just a guess on my side; system devices are suspended and
resumed with interrupts off; that most probably should be a decisive point
in this distinction.

+       "PNP0C09", /* EC */
-> system or platform, not sure...

+       "ACPI0003", /* AC */
-> platform

+       "PNP0C0F", /* Link */
-> system. Might this already be registered on some systems? I have
irqrouter, i8237 and i8259 in /sys/devices/system/

+       "PNP0C0A", /* battery */
-> platform

+       "PNP0C0C", "PNP0C0E", "PNP0C0D", "ACPI_FPB" ,"ACPI_FSB", /* button */
-> platform

+       "PNP0C0B", /* fan */
-> platform

+       "PNP0A03", /* PCI root */
-> system or platform, not sure either.... Please make sure that "pci0000:00" or
   whatever is registered as a child of this device.

+       ACPI_POWER_HID, /* power */
-> platform

+       ACPI_PROCESSOR_HID, /* CPU */
-> system, is already there...

+       ACPI_THERMAL_HID, /* thermal */
-> platform


Also, you might think about adding all these devices to "class ACPI".
/sys/class/acpi/ is perfectly valid; there you can add some common
infrastrucutre for _all_ ACPI-enumerated devices, rely on "class interface"
and other methods available.

Thanks,
	Dominik


-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf

  parent reply	other threads:[~2005-09-12 17:57 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-09-12  5:22 [RFC 0/2]convert ACPI driver model to Linux driver model Shaohua Li
     [not found] ` <1126502542.5153.17.camel-ECwVeV2eNyQD0+JXs3kMbRL4W9x8LtSr@public.gmane.org>
2005-09-12 17:57   ` Dominik Brodowski [this message]
     [not found]     ` <20050912175741.GA15324-X3ehHDuj6sIIGcDfoQAp7BvVK+yQ3ZXh@public.gmane.org>
2005-09-13  6:50       ` Shaohua Li
2005-09-21  4:56       ` Adam Belay
2005-09-21  4:31   ` Adam Belay
     [not found]     ` <20050921043147.GA14734-IBH0VoN/3vPQT0dZR+AlfA@public.gmane.org>
2005-09-21  5:37       ` Shaohua Li

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=20050912175741.GA15324@dominikbrodowski.de \
    --to=linux-x3ehhduj6siigcdfoqap7otw4wligrcz@public.gmane.org \
    --cc=acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    --cc=ambx1-IBH0VoN/3vPQT0dZR+AlfA@public.gmane.org \
    --cc=len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=shaohua.li-ral2JQCrhuEAvxtiuMwx3w@public.gmane.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