Hi Soren, On 09/13/2013 09:53 PM, Sören Brinkmann wrote: > Hi Preeti, > Thanks for the explanation but now I'm a little confused. That's a lot of > details and I'm lacking the in depth knowledge to fully understand > everything. > > Is it correct to say, that your patch series enables per cpu devices to > be the broadcast device - for PPC? Not really. We have a pseudo clock device, which is registered as the broadcast device. This clock device has all the features of an external clock device that the broadcast framework expects from a broadcast device like !CLOCK_FEAT_C3STOP & !FEAT_PERCPU that you introduce in your patch. It as though we trick the broadcast framework into believing that we have an external device, while in reality the pseudo device is just a dummy. So if this is a pseudo device, which gets registered as the broadcast device, how do we program it to handle broadcast events? That is where the per cpu device steps in. It serves as the clock source to this pseudo device. Meaning we program the per cpu device for the next broadcast event using a hrtimer framework that we introduce, which calls pseudo_dev->event_handler on expiry. This is nothing but the broadcast handler. Therefore we are able to manage broadcast without having to have an explicit clock device for the purpose. > And that would mean, that even though you have a per cpu device, you'd > deliberately not set the FEAT_PERCPU flag, because on PPC a per cpu > timer is a valid broadcast device? No we would set the FEAT_PERCPU for the per cpu device on PPC. As I mentioned above this is not going to be registered as the broadcast device. We would however not set this flag for the pseudo device, that we register as the broadcast device. > > Assuming that is not going into an utterly wrong direction: How would we > close on this one? AFAIK, ARM does not have this capability and I guess > it won't be added. So, should I go forward with the fix proposed by > Thomas? Should we rename the FEAT_PERCPU flag to something else, given > that PPC may use per cpu devices for broadcasting and the sole usage of > that flag is to prevent such a device from becoming the broadcast device? You can go ahead with this fix because as explained above, when we register a broadcast device we use a pseudo device which has the features that the broadcast framework approves. The per cpu device does not register itself with the broadcast framework. It merely programs itself for the next broadcast event. Hence this fix will not hinder the broadcast support on PPC. > > Thanks, > Sören > > Regards Preeti U Murthy -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html