Re: [RFC] PMU: replace information ioctls and schedule for removal

2007-11-13 Thread Johannes Berg

On Tue, 2007-11-13 at 10:15 +1100, Paul Mackerras wrote:
 Johannes Berg writes:
 
  Does anybody need that? I'm not against adding it but we never showed it
  and I haven't seen anyone ask for it.
 
 pmud uses the PMU version, but I think it gets it by issuing a PMU
 command.

Yeah, it probably has to since I don't see us exporting it anywhere. Do
we want to change pmud to read it from elsewhere? I guess I'll just add
it to sysfs and it can use it if it wants.

johannes


signature.asc
Description: This is a digitally signed message part
___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: [RFC] PMU: replace information ioctls and schedule for removal

2007-11-12 Thread Johannes Berg

On Mon, 2007-11-12 at 07:55 +1100, Benjamin Herrenschmidt wrote:
 On Thu, 2007-11-08 at 13:02 +0100, Johannes Berg wrote:
  This patch adds sysfs attributes to the PMU to allow getting
  the information on the PMU type and whether adb is present from
  there instead of via the ioctl. The ioctl is made optional and
  scheduled for removal.
 
 Acked-by:  Benjamin Herrenschmidt [EMAIL PROTECTED]
 ---
 
 While there, maybe also expose the PMU version ?

Does anybody need that? I'm not against adding it but we never showed it
and I haven't seen anyone ask for it.

johannes


signature.asc
Description: This is a digitally signed message part
___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: [RFC] PMU: replace information ioctls and schedule for removal

2007-11-12 Thread Paul Mackerras
Johannes Berg writes:

 Does anybody need that? I'm not against adding it but we never showed it
 and I haven't seen anyone ask for it.

pmud uses the PMU version, but I think it gets it by issuing a PMU
command.

Paul.
___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


Re: [RFC] PMU: replace information ioctls and schedule for removal

2007-11-11 Thread Benjamin Herrenschmidt

On Thu, 2007-11-08 at 13:02 +0100, Johannes Berg wrote:
 This patch adds sysfs attributes to the PMU to allow getting
 the information on the PMU type and whether adb is present from
 there instead of via the ioctl. The ioctl is made optional and
 scheduled for removal.

Acked-by:  Benjamin Herrenschmidt [EMAIL PROTECTED]
---

While there, maybe also expose the PMU version ?

 Signed-off-by: Johannes Berg [EMAIL PROTECTED]
 Cc: Benjamin Herrenschmidt [EMAIL PROTECTED]
 ---
  Documentation/feature-removal-schedule.txt |8 ++
  drivers/macintosh/Kconfig  |   11 
  drivers/macintosh/via-pmu.c|   36 
 +
  3 files changed, 55 insertions(+)
 
 --- everything.orig/drivers/macintosh/via-pmu.c   2007-11-08 
 11:48:48.292846681 +0100
 +++ everything/drivers/macintosh/via-pmu.c2007-11-08 11:48:53.112861818 
 +0100
 @@ -2533,10 +2533,12 @@ pmu_ioctl(struct inode * inode, struct f
  #endif /* CONFIG_INPUT_ADBHID */
  #endif /* CONFIG_PMAC_BACKLIGHT_LEGACY */
  
 +#ifdef CONFIG_DEPRECATED_PMU_INFO_IOCTLS
   case PMU_IOC_GET_MODEL:
   return put_user(pmu_kind, argp);
   case PMU_IOC_HAS_ADB:
   return put_user(pmu_has_adb, argp);
 +#endif
   }
   return error;
  }
 @@ -2680,6 +2682,39 @@ static int pmu_sys_resume(struct sys_dev
  
  #endif /* CONFIG_PM_SLEEP  CONFIG_PPC32 */
  
 +static ssize_t show_kind(struct sys_device *sysdev, char *buf)
 +{
 + return sprintf(buf, %d\n, pmu_kind);
 +}
 +
 +static ssize_t show_has_adb(struct sys_device *sysdev, char *buf)
 +{
 + return sprintf(buf, %d\n, pmu_has_adb);
 +}
 +
 +static SYSDEV_ATTR(kind, 0444, show_kind, NULL);
 +static SYSDEV_ATTR(has_adb, 0444, show_has_adb, NULL);
 +
 +int pmu_sys_add(struct sys_device *sysdev)
 +{
 + int err;
 +
 + err = sysdev_create_file(sysdev, attr_kind);
 + if (err)
 + goto out;
 +
 + err = sysdev_create_file(sysdev, attr_has_adb);
 + if (err)
 + goto out_remove_kind;
 +
 + return 0;
 +
 + out_remove_kind:
 + sysdev_remove_file(sysdev, attr_kind);
 + out:
 + return err;
 +}
 +
  static struct sysdev_class pmu_sysclass = {
   set_kset_name(pmu),
  };
 @@ -2693,6 +2728,7 @@ static struct sysdev_driver driver_pmu =
   .suspend= pmu_sys_suspend,
   .resume = pmu_sys_resume,
  #endif /* CONFIG_PM_SLEEP  CONFIG_PPC32 */
 + .add= pmu_sys_add,
  };
  
  static int __init init_pmu_sysfs(void)
 --- everything.orig/Documentation/feature-removal-schedule.txt
 2007-11-08 11:47:39.502844564 +0100
 +++ everything/Documentation/feature-removal-schedule.txt 2007-11-08 
 11:48:53.122870607 +0100
 @@ -342,3 +342,11 @@ Why: This driver has been marked obsolet
  Who: Stephen Hemminger [EMAIL PROTECTED]
  
  ---
 +
 +What:/dev/pmu information ioctls
 +When:January 2010
 +Files:   drivers/macintosh/via-pmu.c
 +Why: The PMU information can be obtained from sysfs now.
 +Who: Johannes Berg [EMAIL PROTECTED]
 +
 +---
 --- everything.orig/drivers/macintosh/Kconfig 2007-11-08 11:47:39.422844727 
 +0100
 +++ everything/drivers/macintosh/Kconfig  2007-11-08 11:48:53.122870607 
 +0100
 @@ -87,6 +87,17 @@ config ADB_PMU
 this device; you should do so if your machine is one of those
 mentioned above.
  
 +config DEPRECATED_PMU_INFO_IOCTLS
 + bool Support deprecated PMU information ioctl
 + depends on ADB_PMU
 + default y
 + help
 +   The PMU ioctl supports getting information on the type of PMU and
 +   whether an ADB is present. This information is also available in
 +   sysfs so this ioctl is no longer needed.
 +
 +   If in doubt, say Y even if you will not use the ioctl.
 +
  config ADB_PMU_LED
   bool Support for the Power/iBook front LED
   depends on ADB_PMU
 

___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


[RFC] PMU: replace information ioctls and schedule for removal

2007-11-08 Thread Johannes Berg
This patch adds sysfs attributes to the PMU to allow getting
the information on the PMU type and whether adb is present from
there instead of via the ioctl. The ioctl is made optional and
scheduled for removal.

Signed-off-by: Johannes Berg [EMAIL PROTECTED]
Cc: Benjamin Herrenschmidt [EMAIL PROTECTED]
---
 Documentation/feature-removal-schedule.txt |8 ++
 drivers/macintosh/Kconfig  |   11 
 drivers/macintosh/via-pmu.c|   36 +
 3 files changed, 55 insertions(+)

--- everything.orig/drivers/macintosh/via-pmu.c 2007-11-08 11:48:48.292846681 
+0100
+++ everything/drivers/macintosh/via-pmu.c  2007-11-08 11:48:53.112861818 
+0100
@@ -2533,10 +2533,12 @@ pmu_ioctl(struct inode * inode, struct f
 #endif /* CONFIG_INPUT_ADBHID */
 #endif /* CONFIG_PMAC_BACKLIGHT_LEGACY */
 
+#ifdef CONFIG_DEPRECATED_PMU_INFO_IOCTLS
case PMU_IOC_GET_MODEL:
return put_user(pmu_kind, argp);
case PMU_IOC_HAS_ADB:
return put_user(pmu_has_adb, argp);
+#endif
}
return error;
 }
@@ -2680,6 +2682,39 @@ static int pmu_sys_resume(struct sys_dev
 
 #endif /* CONFIG_PM_SLEEP  CONFIG_PPC32 */
 
+static ssize_t show_kind(struct sys_device *sysdev, char *buf)
+{
+   return sprintf(buf, %d\n, pmu_kind);
+}
+
+static ssize_t show_has_adb(struct sys_device *sysdev, char *buf)
+{
+   return sprintf(buf, %d\n, pmu_has_adb);
+}
+
+static SYSDEV_ATTR(kind, 0444, show_kind, NULL);
+static SYSDEV_ATTR(has_adb, 0444, show_has_adb, NULL);
+
+int pmu_sys_add(struct sys_device *sysdev)
+{
+   int err;
+
+   err = sysdev_create_file(sysdev, attr_kind);
+   if (err)
+   goto out;
+
+   err = sysdev_create_file(sysdev, attr_has_adb);
+   if (err)
+   goto out_remove_kind;
+
+   return 0;
+
+ out_remove_kind:
+   sysdev_remove_file(sysdev, attr_kind);
+ out:
+   return err;
+}
+
 static struct sysdev_class pmu_sysclass = {
set_kset_name(pmu),
 };
@@ -2693,6 +2728,7 @@ static struct sysdev_driver driver_pmu =
.suspend= pmu_sys_suspend,
.resume = pmu_sys_resume,
 #endif /* CONFIG_PM_SLEEP  CONFIG_PPC32 */
+   .add= pmu_sys_add,
 };
 
 static int __init init_pmu_sysfs(void)
--- everything.orig/Documentation/feature-removal-schedule.txt  2007-11-08 
11:47:39.502844564 +0100
+++ everything/Documentation/feature-removal-schedule.txt   2007-11-08 
11:48:53.122870607 +0100
@@ -342,3 +342,11 @@ Why:   This driver has been marked obsolet
 Who:   Stephen Hemminger [EMAIL PROTECTED]
 
 ---
+
+What:  /dev/pmu information ioctls
+When:  January 2010
+Files: drivers/macintosh/via-pmu.c
+Why:   The PMU information can be obtained from sysfs now.
+Who:   Johannes Berg [EMAIL PROTECTED]
+
+---
--- everything.orig/drivers/macintosh/Kconfig   2007-11-08 11:47:39.422844727 
+0100
+++ everything/drivers/macintosh/Kconfig2007-11-08 11:48:53.122870607 
+0100
@@ -87,6 +87,17 @@ config ADB_PMU
  this device; you should do so if your machine is one of those
  mentioned above.
 
+config DEPRECATED_PMU_INFO_IOCTLS
+   bool Support deprecated PMU information ioctl
+   depends on ADB_PMU
+   default y
+   help
+ The PMU ioctl supports getting information on the type of PMU and
+ whether an ADB is present. This information is also available in
+ sysfs so this ioctl is no longer needed.
+
+ If in doubt, say Y even if you will not use the ioctl.
+
 config ADB_PMU_LED
bool Support for the Power/iBook front LED
depends on ADB_PMU


___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev