Home
last modified time | relevance | path

Searched defs:SCBRR_VALUE (Results 1 – 1 of 1) sorted by relevance

/u-boot/drivers/serial/
A Dserial_sh.h478 #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1) macro
482 #define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1) macro
491 #define SCBRR_VALUE(bps, clk) scbrr_calc(port, bps, clk) macro
495 #define SCBRR_VALUE(bps, clk) (clk / bps / 16 - 1) /* Internal Clock */ macro
497 #define SCBRR_VALUE(bps, clk) (clk / bps / 32 - 1) /* Internal Clock */ macro
500 #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1) macro

Completed in 4 milliseconds