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

/u-boot/drivers/serial/
H A Dserial_sh.h499 #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1) macro
502 #define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1) macro
511 #define SCBRR_VALUE(bps, clk) scbrr_calc(port, bps, clk) macro
515 #define SCBRR_VALUE(bps, clk) (clk / bps / 16 - 1) /* Internal Clock */ macro
517 #define SCBRR_VALUE(bps, clk) (clk / bps / 32 - 1) /* Internal Clock */ macro
527 #define SCBRR_VALUE(bps, clk) scbrr_calc(port, bps, clk) macro
529 #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1) macro

Completed in 40 milliseconds