How can I set FX3 about Internal Clock.?

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
TeLe_4638221
Level 3
Level 3
Welcome! 10 replies posted 5 replies posted

Hi All,

I am working cypress FX3. I changed clock setting in GPIF designer to internal clock. I just modified Clock settings in GPIF II Designer.

and CyU3PPibClock_t is initialized like below..

pibclock.clkDiv      = 2;

pibclock.clkSrc      = CY_U3P_SYS_CLK;

pibclock.isDllEnable = CyFalse;

pibclock.isHalfDiv   = CyFalse;

But, I could not probe the any signal..

How can I set FX3 firmware about Internal Clock.??

should I changed Any other sources?

please give me some advices..

Thanks

Best Regards,

Ted Lee.

0 Likes
1 Solution
Rashi_Vatsa
Moderator
Moderator
Moderator
5 likes given 500 solutions authored 1000 replies posted

Hello Ted Lee,

The maximum frequency of GPIF clock supported is 100 MHz

As SYS_CLK can be 384 MHz or 403.2 MHZ, if pibclock.clkDiv      = 2; then the value of pib clock will be  192 MHz or 201 MHz respectively, which is not supported by GPIF.

So if the GPIF clock is configured as internal clock the pibclock.clkDiv   should be >= 4

Please let me know if any queries on this

Regards,

Rashi

Regards,
Rashi

View solution in original post

0 Likes
1 Reply
Rashi_Vatsa
Moderator
Moderator
Moderator
5 likes given 500 solutions authored 1000 replies posted

Hello Ted Lee,

The maximum frequency of GPIF clock supported is 100 MHz

As SYS_CLK can be 384 MHz or 403.2 MHZ, if pibclock.clkDiv      = 2; then the value of pib clock will be  192 MHz or 201 MHz respectively, which is not supported by GPIF.

So if the GPIF clock is configured as internal clock the pibclock.clkDiv   should be >= 4

Please let me know if any queries on this

Regards,

Rashi

Regards,
Rashi
0 Likes