Commit 57715765 authored by Geoff Levand's avatar Geoff Levand Committed by Paul Mackerras

[POWERPC] ps3: fix interrupt bmp

Add a comment and a preprocessor macro to help clearify the alignment
needs of the PS3 interrupt bitmap.
Signed-off-by: default avatarGeoff Levand <geoffrey.levand@am.sony.com>
Acked-by: default avatarArnd Bergmann <arnd.bergmann@de.ibm.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent b1eeb38e
...@@ -48,6 +48,9 @@ ...@@ -48,6 +48,9 @@
* behalf of the guest. These mappings are implemented as 256 bit guest * behalf of the guest. These mappings are implemented as 256 bit guest
* supplied bitmaps indexed by plug number. The addresses of the bitmaps * supplied bitmaps indexed by plug number. The addresses of the bitmaps
* are registered with the HV through lv1_configure_irq_state_bitmap(). * are registered with the HV through lv1_configure_irq_state_bitmap().
* The HV requires that the 512 bits of status + mask not cross a page
* boundary. PS3_BMP_MINALIGN is used to define this minimal 64 byte
* alignment.
* *
* The HV supports 256 plugs per thread, assigned as {0..255}, for a total * The HV supports 256 plugs per thread, assigned as {0..255}, for a total
* of 512 plugs supported on a processor. To simplify the logic this * of 512 plugs supported on a processor. To simplify the logic this
...@@ -59,6 +62,8 @@ ...@@ -59,6 +62,8 @@
* can acquire. * can acquire.
*/ */
#define PS3_BMP_MINALIGN 64
struct ps3_bmp { struct ps3_bmp {
struct { struct {
u64 status; u64 status;
...@@ -78,7 +83,7 @@ struct ps3_bmp { ...@@ -78,7 +83,7 @@ struct ps3_bmp {
*/ */
struct ps3_private { struct ps3_private {
struct ps3_bmp bmp __attribute__ ((aligned (64))); struct ps3_bmp bmp __attribute__ ((aligned (PS3_BMP_MINALIGN)));
u64 node; u64 node;
unsigned int cpu; unsigned int cpu;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment