Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1470193 > unrolled thread
| Started by | Alan Stern <stern@rowland.harvard.edu> |
|---|---|
| First post | 2016-08-25 16:50 +0200 |
| Last post | 2016-08-29 10:40 +0200 |
| Articles | 12 — 5 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Alan Stern <stern@rowland.harvard.edu> - 2016-08-25 16:50 +0200
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Jacek Anaszewski <jacek.anaszewski@gmail.com> - 2016-08-25 20:50 +0200
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Alan Stern <stern@rowland.harvard.edu> - 2016-08-25 21:40 +0200
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Alan Stern <stern@rowland.harvard.edu> - 2016-08-25 22:10 +0200
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Rafał Miłecki <zajec5@gmail.com> - 2016-08-26 18:00 +0200
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Jacek Anaszewski <j.anaszewski@samsung.com> - 2016-08-29 10:00 +0200
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Pavel Machek <pavel@ucw.cz> - 2016-08-29 10:10 +0200
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Rafał Miłecki <zajec5@gmail.com> - 2016-08-29 10:30 +0200
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Pavel Machek <pavel@ucw.cz> - 2016-08-29 10:50 +0200
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Rafał Miłecki <zajec5@gmail.com> - 2016-08-29 11:10 +0200
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Pavel Machek <pavel@ucw.cz> - 2016-08-26 22:00 +0200
Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger Jacek Anaszewski <j.anaszewski@samsung.com> - 2016-08-29 10:40 +0200
| From | Alan Stern <stern@rowland.harvard.edu> |
|---|---|
| Date | 2016-08-25 16:50 +0200 |
| Subject | Re: [PATCH RFC V3.5] leds: trigger: Introduce an USB port trigger |
| Message-ID | <sa48G-2d0-21@gated-at.bofh.it> |
On Thu, 25 Aug 2016, Jacek Anaszewski wrote: > I'd see it as follows: > > #cat available_ports > #1-1 1-2 2-1 > > #echo "1-1" > new_port > > #cat observed_ports > #1-1 > > #echo "2-1" > new_port > > #cat observed_ports > #1-1 2-1 > > We've already had few discussions about the sysfs designs trying > to break the one-value-per-file rule for LED class device, and > there was always strong resistance against. This scheme has multiple values in both the available_ports and observed_ports files. :-( Not that I have any better suggestions... > >> Also a description of the device connected to the port would be a nice > >> feature, however I am not certain about the feasibility thereof. > > > > What kind of description do you mean? Where should it be used / where > > should it appear? > > > > Product name/symbol. Actually it should be USB subsystem responsibility > to provide the means for querying the product name by port id, if it > is possible at all. cat /sys/bus/usb/devices/PORT/product cat /sys/bus/usb/devices/PORT/manufacturer These will work if there is a device registered under PORT. Alan Stern
[toc] | [next] | [standalone]
| From | Jacek Anaszewski <jacek.anaszewski@gmail.com> |
|---|---|
| Date | 2016-08-25 20:50 +0200 |
| Message-ID | <sa7SV-4G3-3@gated-at.bofh.it> |
| In reply to | #1470193 |
On 08/25/2016 04:30 PM, Alan Stern wrote: > On Thu, 25 Aug 2016, Jacek Anaszewski wrote: > >> I'd see it as follows: >> >> #cat available_ports >> #1-1 1-2 2-1 >> >> #echo "1-1" > new_port >> >> #cat observed_ports >> #1-1 >> >> #echo "2-1" > new_port >> >> #cat observed_ports >> #1-1 2-1 >> >> We've already had few discussions about the sysfs designs trying >> to break the one-value-per-file rule for LED class device, and >> there was always strong resistance against. > > This scheme has multiple values in both the available_ports and > observed_ports files. :-( Not that I have any better suggestions... Right, I forgot to add a note here, that this follows space separated list pattern similarly as in case of triggers attribute. Of course other suggestions are welcome. >>>> Also a description of the device connected to the port would be a nice >>>> feature, however I am not certain about the feasibility thereof. >>> >>> What kind of description do you mean? Where should it be used / where >>> should it appear? >>> >> >> Product name/symbol. Actually it should be USB subsystem responsibility >> to provide the means for querying the product name by port id, if it >> is possible at all. > > cat /sys/bus/usb/devices/PORT/product > cat /sys/bus/usb/devices/PORT/manufacturer > > These will work if there is a device registered under PORT. I've found only idProduct and idVendor files. They indeed uniquely identify the device, but the numbers are not human readable. Is there a way to retrieve the corresponding names in kernel? Does the lsusb command do the mapping in the user space or maybe it takes the names from kernel? -- Best regards, Jacek Anaszewski
[toc] | [prev] | [next] | [standalone]
| From | Alan Stern <stern@rowland.harvard.edu> |
|---|---|
| Date | 2016-08-25 21:40 +0200 |
| Message-ID | <sa8Fj-5fE-1@gated-at.bofh.it> |
| In reply to | #1470331 |
On Thu, 25 Aug 2016, Jacek Anaszewski wrote: > >>> What kind of description do you mean? Where should it be used / where > >>> should it appear? > >>> > >> > >> Product name/symbol. Actually it should be USB subsystem responsibility > >> to provide the means for querying the product name by port id, if it > >> is possible at all. > > > > cat /sys/bus/usb/devices/PORT/product > > cat /sys/bus/usb/devices/PORT/manufacturer > > > > These will work if there is a device registered under PORT. > > I've found only idProduct and idVendor files. They indeed uniquely > identify the device, but the numbers are not human readable. > Is there a way to retrieve the corresponding names in kernel? If the device provides the string descriptors then the textual product and manufacturer files are available in sysfs, otherwise they aren't. > Does the lsusb command do the mapping in the user space or maybe > it takes the names from kernel? lsusb does the mapping in userspace, based on an ID database. On my system (Fedora), the database is /etc/udev/hwdb.bin. Alan Stern
[toc] | [prev] | [next] | [standalone]
| From | Alan Stern <stern@rowland.harvard.edu> |
|---|---|
| Date | 2016-08-25 22:10 +0200 |
| Message-ID | <sa98l-5HC-11@gated-at.bofh.it> |
| In reply to | #1470354 |
On Thu, 25 Aug 2016, Alan Stern wrote: > > Does the lsusb command do the mapping in the user space or maybe > > it takes the names from kernel? > > lsusb does the mapping in userspace, based on an ID database. On my > system (Fedora), the database is /etc/udev/hwdb.bin. There's also /usr/share/hwdata/usb.ids -- I don't know if or how the two databases are related. And there's /usr/lib/udev/hwdb.d/20-usb*. Alan Stern
[toc] | [prev] | [next] | [standalone]
| From | Rafał Miłecki <zajec5@gmail.com> |
|---|---|
| Date | 2016-08-26 18:00 +0200 |
| Message-ID | <sarHX-B0-5@gated-at.bofh.it> |
| In reply to | #1470331 |
On 25 August 2016 at 20:48, Jacek Anaszewski <jacek.anaszewski@gmail.com> wrote: > On 08/25/2016 04:30 PM, Alan Stern wrote: >> >> On Thu, 25 Aug 2016, Jacek Anaszewski wrote: >> >>> I'd see it as follows: >>> >>> #cat available_ports >>> #1-1 1-2 2-1 >>> >>> #echo "1-1" > new_port >>> >>> #cat observed_ports >>> #1-1 >>> >>> #echo "2-1" > new_port >>> >>> #cat observed_ports >>> #1-1 2-1 >>> >>> We've already had few discussions about the sysfs designs trying >>> to break the one-value-per-file rule for LED class device, and >>> there was always strong resistance against. >> >> >> This scheme has multiple values in both the available_ports and >> observed_ports files. :-( Not that I have any better suggestions... > > > Right, I forgot to add a note here, that this follows space > separated list pattern similarly as in case of triggers attribute. > Of course other suggestions are welcome. So ppl have doubts about multiple values in a single sysfs file (whatever we call it: "ports" or "observed_ports"). Greg clearly said: > sysfs is "one value per file", here you are listing a bunch of things in > one sysfs file. Please don't do that. What about my idea of using "ports" subdirectory and having each port as separated file inside that subdir? I think there are two ways of doing this: 1) Having "ports" subdir with 0x0000 chmod files, one per each port specified as observable In this solution we need "new_port" and "remove_port" that can be used for management of observable ports. I think Jacek wasn't happy with this chmod and he believes Greg meant R/W files. 2) Having "ports" subdir with RW files, one per each existing physical port In this situation we don't need "new_port" or "remove_port". If we want port to be observable we just do: echo 1 > 1-1 Implementing this solution needs reading more details from USB subsystem. Do you find any of solutions with "ports" subdir better than dealing with new-line/space separated values in a single sysfs file? -- Rafał
[toc] | [prev] | [next] | [standalone]
| From | Jacek Anaszewski <j.anaszewski@samsung.com> |
|---|---|
| Date | 2016-08-29 10:00 +0200 |
| Message-ID | <sbpE6-4vC-19@gated-at.bofh.it> |
| In reply to | #1470869 |
On 08/26/2016 05:58 PM, Rafał Miłecki wrote: > On 25 August 2016 at 20:48, Jacek Anaszewski <jacek.anaszewski@gmail.com> wrote: >> On 08/25/2016 04:30 PM, Alan Stern wrote: >>> >>> On Thu, 25 Aug 2016, Jacek Anaszewski wrote: >>> >>>> I'd see it as follows: >>>> >>>> #cat available_ports >>>> #1-1 1-2 2-1 >>>> >>>> #echo "1-1" > new_port >>>> >>>> #cat observed_ports >>>> #1-1 >>>> >>>> #echo "2-1" > new_port >>>> >>>> #cat observed_ports >>>> #1-1 2-1 >>>> >>>> We've already had few discussions about the sysfs designs trying >>>> to break the one-value-per-file rule for LED class device, and >>>> there was always strong resistance against. >>> >>> >>> This scheme has multiple values in both the available_ports and >>> observed_ports files. :-( Not that I have any better suggestions... >> >> >> Right, I forgot to add a note here, that this follows space >> separated list pattern similarly as in case of triggers attribute. >> Of course other suggestions are welcome. > > So ppl have doubts about multiple values in a single sysfs file > (whatever we call it: "ports" or "observed_ports"). Greg clearly said: >> sysfs is "one value per file", here you are listing a bunch of things in >> one sysfs file. Please don't do that. > > What about my idea of using "ports" subdirectory and having each port > as separated file inside that subdir? I think there are two ways of > doing this: > > 1) Having "ports" subdir with 0x0000 chmod files, one per each port > specified as observable > In this solution we need "new_port" and "remove_port" that can be used > for management of observable ports. > I think Jacek wasn't happy with this chmod and he believes Greg meant R/W files. It looks odd to me. In this case it would also abuse "one value per file" rule - the files would have no value, and only their names would carry an information. > 2) Having "ports" subdir with RW files, one per each existing physical port > In this situation we don't need "new_port" or "remove_port". If we > want port to be observable we just do: > echo 1 > 1-1 > Implementing this solution needs reading more details from USB subsystem. The situation here is clear IMO - the number of USB ports in the system can change dynamically. I'm not sure if this can be handled easily with sysfs, where we usually expose an interface for known set of settings. struct attribute arrays are usually defined statically at the compile time and filled with the variables, that are created with DEVICE_ATTR macro. > Do you find any of solutions with "ports" subdir better than dealing > with new-line/space separated values in a single sysfs file? > -- Best regards, Jacek Anaszewski
[toc] | [prev] | [next] | [standalone]
| From | Pavel Machek <pavel@ucw.cz> |
|---|---|
| Date | 2016-08-29 10:10 +0200 |
| Message-ID | <sbpNM-4Om-41@gated-at.bofh.it> |
| In reply to | #1471611 |
Hi! > >2) Having "ports" subdir with RW files, one per each existing physical port > >In this situation we don't need "new_port" or "remove_port". If we > >want port to be observable we just do: > >echo 1 > 1-1 > >Implementing this solution needs reading more details from USB subsystem. > > The situation here is clear IMO - the number of USB ports in the system > can change dynamically. I'm not sure if this can be handled easily with > sysfs, where we usually expose an interface for known set of settings. > struct attribute arrays are usually defined statically at the compile > time and filled with the variables, that are created with DEVICE_ATTR > macro. sysfs already exposes current view of all usb devices. Just use it. Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
[toc] | [prev] | [next] | [standalone]
| From | Rafał Miłecki <zajec5@gmail.com> |
|---|---|
| Date | 2016-08-29 10:30 +0200 |
| Message-ID | <sbq78-4Wv-11@gated-at.bofh.it> |
| In reply to | #1471624 |
On 29 August 2016 at 10:05, Pavel Machek <pavel@ucw.cz> wrote: >> >2) Having "ports" subdir with RW files, one per each existing physical port >> >In this situation we don't need "new_port" or "remove_port". If we >> >want port to be observable we just do: >> >echo 1 > 1-1 >> >Implementing this solution needs reading more details from USB subsystem. >> >> The situation here is clear IMO - the number of USB ports in the system >> can change dynamically. I'm not sure if this can be handled easily with >> sysfs, where we usually expose an interface for known set of settings. >> struct attribute arrays are usually defined statically at the compile >> time and filled with the variables, that are created with DEVICE_ATTR >> macro. > > sysfs already exposes current view of all usb devices. Just use it. We're talking about USB ports not devices, but this is still true. You can find them in /sys/bus/usb/devices/*/*-port* I can't see how we could use them. How could I develop sysfs interface in /sys/class/leds/*/ to allow userspace assigning USB ports to the LED trigger? -- Rafał
[toc] | [prev] | [next] | [standalone]
| From | Pavel Machek <pavel@ucw.cz> |
|---|---|
| Date | 2016-08-29 10:50 +0200 |
| Message-ID | <sbqqt-538-3@gated-at.bofh.it> |
| In reply to | #1471639 |
On Mon 2016-08-29 10:21:48, Rafał Miłecki wrote: > On 29 August 2016 at 10:05, Pavel Machek <pavel@ucw.cz> wrote: > >> >2) Having "ports" subdir with RW files, one per each existing physical port > >> >In this situation we don't need "new_port" or "remove_port". If we > >> >want port to be observable we just do: > >> >echo 1 > 1-1 > >> >Implementing this solution needs reading more details from USB subsystem. > >> > >> The situation here is clear IMO - the number of USB ports in the system > >> can change dynamically. I'm not sure if this can be handled easily with > >> sysfs, where we usually expose an interface for known set of settings. > >> struct attribute arrays are usually defined statically at the compile > >> time and filled with the variables, that are created with DEVICE_ATTR > >> macro. > > > > sysfs already exposes current view of all usb devices. Just use it. > > We're talking about USB ports not devices, but this is still true. You > can find them in > /sys/bus/usb/devices/*/*-port* > > I can't see how we could use them. How could I develop sysfs interface > in /sys/class/leds/*/ to allow userspace assigning USB ports to the > LED trigger? Create /sys/bus/usb/devices/*/*-port*/led_trigger file? (Do you plan one USB trigger, or multiple ones?) Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
[toc] | [prev] | [next] | [standalone]
| From | Rafał Miłecki <zajec5@gmail.com> |
|---|---|
| Date | 2016-08-29 11:10 +0200 |
| Message-ID | <sbqJP-5oR-1@gated-at.bofh.it> |
| In reply to | #1471647 |
On 29 August 2016 at 10:41, Pavel Machek <pavel@ucw.cz> wrote: > On Mon 2016-08-29 10:21:48, Rafał Miłecki wrote: >> On 29 August 2016 at 10:05, Pavel Machek <pavel@ucw.cz> wrote: >> >> >2) Having "ports" subdir with RW files, one per each existing physical port >> >> >In this situation we don't need "new_port" or "remove_port". If we >> >> >want port to be observable we just do: >> >> >echo 1 > 1-1 >> >> >Implementing this solution needs reading more details from USB subsystem. >> >> >> >> The situation here is clear IMO - the number of USB ports in the system >> >> can change dynamically. I'm not sure if this can be handled easily with >> >> sysfs, where we usually expose an interface for known set of settings. >> >> struct attribute arrays are usually defined statically at the compile >> >> time and filled with the variables, that are created with DEVICE_ATTR >> >> macro. >> > >> > sysfs already exposes current view of all usb devices. Just use it. >> >> We're talking about USB ports not devices, but this is still true. You >> can find them in >> /sys/bus/usb/devices/*/*-port* >> >> I can't see how we could use them. How could I develop sysfs interface >> in /sys/class/leds/*/ to allow userspace assigning USB ports to the >> LED trigger? > > Create /sys/bus/usb/devices/*/*-port*/led_trigger file? > > (Do you plan one USB trigger, or multiple ones?) I guess it means slightly more complex cross-subsystem interaction I may need help to understand. First of all: I will need multiple USB port triggers. It's because there are many devices with multiple USB LEDs. Some complex (but existing!) case: USB 2.0 white LED - activated by USB 2.0 dev in USB 2.0 port USB 3.0 white LED - activated by USB 2.0 dev in USB 3.0 port USB 3.0 green LED - activated by USB 3.0 dev in USB 3.0 port (This devices has separated EHCI and XHCI controllers, so we have 2 logical ports for 1 physical one) So I guess I'll need something more complex like /sys/bus/usb/devices/*/*-port*/bcm53xx:white:usb2_led_trigger /sys/bus/usb/devices/*/*-port*/bcm53xx:white:usb3_led_trigger /sys/bus/usb/devices/*/*-port*/bcm53xx:green:usb3_led_trigger in case every USB led has "usbport" trigger assigned. How can I create above sysfs files? Should I write code for this in ledtrig-usbport.c? That would require accessing struct usb_hub and then struct usb_port, but both of them are internal structs defined in drivers/usb/core/hub.h. How could I work with that? -- Rafał
[toc] | [prev] | [next] | [standalone]
| From | Pavel Machek <pavel@ucw.cz> |
|---|---|
| Date | 2016-08-26 22:00 +0200 |
| Message-ID | <savsd-2Z5-11@gated-at.bofh.it> |
| In reply to | #1470331 |
On Thu 2016-08-25 20:48:04, Jacek Anaszewski wrote: > On 08/25/2016 04:30 PM, Alan Stern wrote: > >On Thu, 25 Aug 2016, Jacek Anaszewski wrote: > > > >>I'd see it as follows: > >> > >>#cat available_ports > >>#1-1 1-2 2-1 > >> > >>#echo "1-1" > new_port > >> > >>#cat observed_ports > >>#1-1 > >> > >>#echo "2-1" > new_port > >> > >>#cat observed_ports > >>#1-1 2-1 > >> > >>We've already had few discussions about the sysfs designs trying > >>to break the one-value-per-file rule for LED class device, and > >>there was always strong resistance against. > > > >This scheme has multiple values in both the available_ports and > >observed_ports files. :-( Not that I have any better suggestions... > > Right, I forgot to add a note here, that this follows space > separated list pattern similarly as in case of triggers attribute. > Of course other suggestions are welcome. > > >>>>Also a description of the device connected to the port would be a nice > >>>>feature, however I am not certain about the feasibility thereof. > >>> > >>>What kind of description do you mean? Where should it be used / where > >>>should it appear? > >>> > >> > >>Product name/symbol. Actually it should be USB subsystem responsibility > >>to provide the means for querying the product name by port id, if it > >>is possible at all. > > > > cat /sys/bus/usb/devices/PORT/product > > cat /sys/bus/usb/devices/PORT/manufacturer > > > >These will work if there is a device registered under PORT. > > I've found only idProduct and idVendor files. They indeed uniquely > identify the device, but the numbers are not human readable. Actually, they don't. They identify device _type_. If you have two mice of the same type connected, they'll have same idProduct / idVendor values. Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
[toc] | [prev] | [next] | [standalone]
| From | Jacek Anaszewski <j.anaszewski@samsung.com> |
|---|---|
| Date | 2016-08-29 10:40 +0200 |
| Message-ID | <sbqgO-4ZR-5@gated-at.bofh.it> |
| In reply to | #1470969 |
On 08/26/2016 09:50 PM, Pavel Machek wrote: > On Thu 2016-08-25 20:48:04, Jacek Anaszewski wrote: >> On 08/25/2016 04:30 PM, Alan Stern wrote: >>> On Thu, 25 Aug 2016, Jacek Anaszewski wrote: >>> >>>> I'd see it as follows: >>>> >>>> #cat available_ports >>>> #1-1 1-2 2-1 >>>> >>>> #echo "1-1" > new_port >>>> >>>> #cat observed_ports >>>> #1-1 >>>> >>>> #echo "2-1" > new_port >>>> >>>> #cat observed_ports >>>> #1-1 2-1 >>>> >>>> We've already had few discussions about the sysfs designs trying >>>> to break the one-value-per-file rule for LED class device, and >>>> there was always strong resistance against. >>> >>> This scheme has multiple values in both the available_ports and >>> observed_ports files. :-( Not that I have any better suggestions... >> >> Right, I forgot to add a note here, that this follows space >> separated list pattern similarly as in case of triggers attribute. >> Of course other suggestions are welcome. >> >>>>>> Also a description of the device connected to the port would be a nice >>>>>> feature, however I am not certain about the feasibility thereof. >>>>> >>>>> What kind of description do you mean? Where should it be used / where >>>>> should it appear? >>>>> >>>> >>>> Product name/symbol. Actually it should be USB subsystem responsibility >>>> to provide the means for querying the product name by port id, if it >>>> is possible at all. >>> >>> cat /sys/bus/usb/devices/PORT/product >>> cat /sys/bus/usb/devices/PORT/manufacturer >>> >>> These will work if there is a device registered under PORT. >> >> I've found only idProduct and idVendor files. They indeed uniquely >> identify the device, but the numbers are not human readable. > > Actually, they don't. They identify device _type_. If you have two > mice of the same type connected, they'll have same idProduct / > idVendor values. That's true. We'd have to be able to distinguish between the devices of the same type. The only way seems to be the port id, whereas the initial intention was to give a hint on what device is represented by given port id :-) Regardless of that, having a device name instead of port id would allow for unique identification of a device in most of cases. -- Best regards, Jacek Anaszewski
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web