On 26 November 2014 at 19:30, Sudeep Holla <sudeep.holla@xxxxxxx> wrote: > On 26/11/14 05:37, Jassi Brar wrote: >> >>>> It seems you still don't get my point that the driver should manage >>>> all channels - S & NS. If Linux is running in NS mode on a platform, >>>> the DT will specify only some NS channel to be used. The controller >>>> driver shouldn't be crippled just because you think Linux will never >>>> be run in Secure mode. >>>> >>> >>> Ok how do you handle that, I don't see that in the DT binding. As it >>> stands, you can unconditionally try to access the secure channel and >>> cause aborts if the platform is running in non-secure mode. >>> >> No. Please look at the dtsi again .... >> >> mhu: mailbox@2b1f0000 { >> #mbox-cells = <1>; >> compatible = "arm,mbox-mhu"; >> reg = <0 0x2b1f0000 0x1000>; >> interrupts = <0 36 4>, /* LP Non-Sec */ >> <0 35 4>, /* HP Non-Sec */ >> <0 37 4>; /* Secure */ > > > One possible issue I can think of(though current driver design requests > irq only on channel startup, it could be moved to probe for optimization > in which case you need a way to make sure secure channel or irq is not > accessed) > As you see it is fine as such. I don't think acquiring all irqs during probe is a good idea. mbox_request_channel() is when we should actually be reserving resources. >> }; >> >> mhu_client: scb@2e000000 { >> compatible = "fujitsu,mb86s70-scb-1.0"; >> reg = <0 0x2e000000 0x4000>; /* SHM for IPC */ >> mboxes = <&mhu 1>; >> }; >> >> See the DT for mbox client specifies that it uses channel-1 which is >> High-Priority_Non-Secure channel. >> > > Yes I noticed that, but still a wrong entry of another mhu_client with > secure channel might end up crashing MHU driver or even whole system. > Not sure but still probably one could try to play around with DT > overlays in future, just a thought. So you need to ensure that's handled > properly in the MHU driver. > You worry too much ;) what if some 'wrong entry' in DT specifies memory where there is none or some voltage that could toast the board? -Jassi -- 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