From: Greg KH <gregkh@linuxfoundation.org>
To: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Cc: Linux Kernel <linux-kernel@vger.kernel.org>,
"Brown, Len" <len.brown@intel.com>,
"Rafael J. Wysocki" <rjw@sisk.pl>
Subject: Re: driver model, duplicate names question
Date: Tue, 16 Jul 2013 12:32:35 -0700 [thread overview]
Message-ID: <20130716193235.GA8142@kroah.com> (raw)
In-Reply-To: <51E59FEF.90404@linux.intel.com>
On Tue, Jul 16, 2013 at 12:33:03PM -0700, Srinivas Pandruvada wrote:
> >> +Example Sys-FS Interface
> >> +
> >> +/sys/class/power_cap/intel-rapl
> >> +├── package-0
> >> +│ ├── constraint-0
> >> +│ │ ├── name
> >> +│ │ ├── power_limit_uw
> >> +│ │ └── time_window_us
> >> +│ ├── constraint-1
> >> +│ │ ├── name
> >> +│ │ ├── power_limit_uw
> >> +│ │ └── time_window_us
> >> +│ ├── core
> >> +│ │ ├── constraint-0
> >> +│ │ │ ├── name
> >> +│ │ │ ├── power_limit_uw
> >> +│ │ │ └── time_window_us
> >> +│ │ ├── energy_uj
> >> +│ │ └── max_energy_range_uj
> >> +│ ├── dram
> >> +│ │ ├── constraint-0
> >> +│ │ │ ├── name
> >> +│ │ │ ├── power_limit_uw
> >> +│ │ │ └── time_window_us
> >> +│ │ ├── energy_uj
> >> +│ │ └── max_energy_range_uj
> >> +│ ├── energy_uj
> >> +│ ├── max_energy_range_uj
> >> +│ └── max_power_range_uw
> >> +├── package-1
> >> +│ ├── constraint-0
> >> +│ │ ├── name
> >> +│ │ ├── power_limit_uw
> >> +│ │ └── time_window_us
> >> +│ ├── constraint-1
> >> +│ │ ├── name
> >> +│ │ ├── power_limit_uw
> >> +│ │ └── time_window_us
> >> +│ ├── core
> >> +│ │ ├── constraint-0
> >> +│ │ │ ├── name
> >> +│ │ │ ├── power_limit_uw
> >> +│ │ │ └── time_window_us
> >> +│ │ ├── energy_uj
> >> +│ │ └── max_energy_range_uj
> >> +│ ├── dram
> >> +│ │ ├── constraint-0
> >> +│ │ │ ├── name
> >> +│ │ │ ├── power_limit_uw
> >> +│ │ │ └── time_window_us
> >> +│ │ ├── energy_uj
> >> +│ │ └── max_energy_range_uj
> >> +│ ├── energy_uj
> >> +│ ├── max_energy_range_uj
> >> +│ └── max_power_range_uw
> >> +├── power
> >> +│ ├── async
> >> +│ ├── autosuspend_delay_ms
> >> +│ ├── control
> >> +│ ├── runtime_active_kids
> >> +│ ├── runtime_active_time
> >> +│ ├── runtime_enabled
> >> +│ ├── runtime_status
> >> +│ ├── runtime_suspended_time
> >> +│ └── runtime_usage
> >> +├── subsystem -> ../../../../class/power_cap
> >> +└── uevent
> > Ick. Rewrite this to use a bus and you should be fine, right? Don't
> > use a class, a class is only to be used if you have a device that is a
> > specific "type of thing". Like a tty device, it is a class, as lots of
> > different "real" devices can have tty ports on them (usb, pci, pcmcia,
> > platform, etc.)
> >
> > Rethink this using a bus and see if that solves your issues. You get a
> > hierarchy with that. And you can have different "types" of devices on
> > your bus, making it easy to tell the difference between a "package" and
> > a "constraint".
> >
> > Does that help?
> I will experiment your suggestion. I see this class analogous to
> "/sys/class/thermal",
> , where the thermal class provides a set of consistent interface for all
> thermal devices.
But thermal devices are not "real" at all. There are just a number of
"cooling devices" on a virtual bus and not attached to any type of a
real device at all.
There's also no hierarchy that I can see with the thermal class, but you
want to have this, so you will have to do something different because
classes do not have hierarchies.
So try using a device and a bus and see if that helps out. If not,
please let me know.
thanks,
greg k-h
next prev parent reply other threads:[~2013-07-16 19:37 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-16 16:34 driver model, duplicate names question Srinivas Pandruvada
2013-07-16 16:44 ` Greg KH
2013-07-16 18:29 ` Srinivas Pandruvada
2013-07-16 18:31 ` Greg KH
2013-07-16 18:54 ` Srinivas Pandruvada
2013-07-16 19:04 ` Greg KH
2013-07-16 19:33 ` Srinivas Pandruvada
2013-07-16 19:32 ` Greg KH [this message]
2013-07-16 20:11 ` Srinivas Pandruvada
[not found] ` <51E6D95B.1070203@linux.intel.com>
2013-07-17 17:48 ` Greg KH
2013-07-17 18:09 ` Srinivas Pandruvada
2013-07-17 18:31 ` Greg KH
2013-07-17 18:55 ` Srinivas Pandruvada
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=20130716193235.GA8142@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=len.brown@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rjw@sisk.pl \
--cc=srinivas.pandruvada@linux.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