Searched defs:bps (Results 1 – 4 of 4) sorted by relevance
/u-boot-v2022.01-rc1/drivers/serial/ |
A D | serial_sh.h | 478 #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1) argument 482 #define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1) argument 484 static inline int scbrr_calc(struct uart_port *port, int bps, int clk) in scbrr_calc() 491 #define SCBRR_VALUE(bps, clk) scbrr_calc(port, bps, clk) argument 493 #define DL_VALUE(bps, clk) (clk / bps / 16) /* External Clock */ argument 495 #define SCBRR_VALUE(bps, clk) (clk / bps / 16 - 1) /* Internal Clock */ argument 497 #define SCBRR_VALUE(bps, clk) (clk / bps / 32 - 1) /* Internal Clock */ argument 500 #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1) argument 504 #define DL_VALUE(bps, clk) 0 argument
|
A D | serial_sti_asc.c | 50 #define BAUDRATE_VAL_M0(bps) (PCLK / (16 * (bps))) argument 51 #define BAUDRATE_VAL_M1(bps) ((bps * (1 << 14)) + (1<<13)) / (PCLK/(1 << 6)) argument
|
/u-boot-v2022.01-rc1/drivers/sound/ |
A D | rockchip_i2s.c | 54 u32 bps = priv->bitspersample; in rockchip_i2s_init() local
|
/u-boot-v2022.01-rc1/cmd/ |
A D | sf.c | 414 int bps; /* Bits per second */ in show_time() local
|
Completed in 14 milliseconds