Hi Sakari, > -----Original Message----- > From: Sakari Ailus [mailto:sakari.ailus@xxxxxxxxxxxxxxx] > Sent: Monday, November 05, 2018 12:28 AM > To: Zhi, Yong <yong.zhi@xxxxxxxxx> > Cc: linux-media@xxxxxxxxxxxxxxx; tfiga@xxxxxxxxxxxx; mchehab@xxxxxxxxxx; > hans.verkuil@xxxxxxxxx; laurent.pinchart@xxxxxxxxxxxxxxxx; Mani, > Rajmohan <rajmohan.mani@xxxxxxxxx>; Zheng, Jian Xu > <jian.xu.zheng@xxxxxxxxx>; Hu, Jerry W <jerry.w.hu@xxxxxxxxx>; Toivonen, > Tuukka <tuukka.toivonen@xxxxxxxxx>; Qiu, Tian Shu > <tian.shu.qiu@xxxxxxxxx>; Cao, Bingbu <bingbu.cao@xxxxxxxxx> > Subject: Re: [PATCH v7 05/16] intel-ipu3: abi: Add structs > > Hi Yong, > > On Mon, Oct 29, 2018 at 03:22:59PM -0700, Yong Zhi wrote: > > This add all the structs of IPU3 firmware ABI. > > > > Signed-off-by: Yong Zhi <yong.zhi@xxxxxxxxx> > > Signed-off-by: Rajmohan Mani <rajmohan.mani@xxxxxxxxx> > > ... > > > +struct imgu_abi_shd_intra_frame_operations_data { > > + struct imgu_abi_acc_operation > > + operation_list[IMGU_ABI_SHD_MAX_OPERATIONS] > __attribute__((aligned(32))); > > + struct imgu_abi_acc_process_lines_cmd_data > > + process_lines_data[IMGU_ABI_SHD_MAX_PROCESS_LINES] > __attribute__((aligned(32))); > > + struct imgu_abi_shd_transfer_luts_set_data > > + transfer_data[IMGU_ABI_SHD_MAX_TRANSFERS] > > +__attribute__((aligned(32))); > > Could you replace this wth __aligned(32), please? The same for the rest of the > header. > Using __aligned(32) in the uAPI header resulted in compilation errors in user space / camera HAL code. e.g ../../../../../../../../usr/include/linux/intel-ipu3.h:464:57: error: expected ';' at end of declaration list __u8 bayer_table[IPU3_UAPI_AWB_FR_BAYER_TABLE_MAX_SIZE] __aligned(32); So we ended up using __attribute__((aligned(32))) format in uAPI header and to be consistent, we followed the same format in ABI header as well. Let us know if it's okay to deviate between uAPI and ABI header for this alignment qualifier. > -- > Regards, > > Sakari Ailus > sakari.ailus@xxxxxxxxxxxxxxx