[PATCH] 3/5 powerpc: Add platform functions interpreter
This is the platform function interpreter itself along with the backends for UniN/U3/U4, mac-io, GPIOs and i2c. It adds the ability to execute those do-platform-* scripts in the device-tree (at least for most devices for which a backend is provided). This should replace the clock spreading hacks properly. It might also have an impact on all sort of machines since some of the scripts marked "at init" will now be executed on boot (or some other on sleep/wakeup), those will possibly do things that the kernel didn't do at all, like setting some values into some i2c devices (changing thermal sensor calibration or conversion rate) etc... Thus regression testing is MUCH welcome. Also loook for errors in dmesg. That's also why I've left rather verbose debugging enabled in this version of the patch. (I do expect some Windtunnel G4s to show some errors as they have an i2c clock chip on the PMU bus that uses some primitives that the i2c backend doesn't implement yet. I really need users that have one of those machine to come back to me so we can get that done right, though the errors themselves should be harmless, I suspect the machine might not run at full speed). Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
committed by
Paul Mackerras
parent
a28d3af2a2
commit
5b9ca52691
@@ -374,5 +374,24 @@ extern struct macio_chip* macio_find(struct device_node* child, int type);
|
||||
#define MACIO_IN8(r) (in_8(MACIO_FCR8(macio,r)))
|
||||
#define MACIO_OUT8(r,v) (out_8(MACIO_FCR8(macio,r), (v)))
|
||||
|
||||
/*
|
||||
* Those are exported by pmac feature for internal use by arch code
|
||||
* only like the platform function callbacks, do not use directly in drivers
|
||||
*/
|
||||
extern spinlock_t feature_lock;
|
||||
extern struct device_node *uninorth_node;
|
||||
extern u32 __iomem *uninorth_base;
|
||||
|
||||
/*
|
||||
* Uninorth reg. access. Note that Uni-N regs are big endian
|
||||
*/
|
||||
|
||||
#define UN_REG(r) (uninorth_base + ((r) >> 2))
|
||||
#define UN_IN(r) (in_be32(UN_REG(r)))
|
||||
#define UN_OUT(r,v) (out_be32(UN_REG(r), (v)))
|
||||
#define UN_BIS(r,v) (UN_OUT((r), UN_IN(r) | (v)))
|
||||
#define UN_BIC(r,v) (UN_OUT((r), UN_IN(r) & ~(v)))
|
||||
|
||||
|
||||
#endif /* __PPC_ASM_PMAC_FEATURE_H */
|
||||
#endif /* __KERNEL__ */
|
||||
|
Reference in New Issue
Block a user