Hello,
I don't know where is the right place to report this,
but anyway I'm just write this post here.
CSL for C55x has a bug in a header file, csl_emifBhal.h, line 1999 :
#define _EMIF_CESCR_CES_MK(n) (((Uint16)(n) & 0x0002u) << _EMIF_CESCR_CES_SHIFT)
This line should be like this : (according to the datasheet, technical manual and my experience)
#define _EMIF_CESCR_CES_MK(n) (((Uint16)(n) & 0x0003u) << _EMIF_CESCR_CES_SHIFT)
Maybe, should release new CSL.
Thanks.