Lines Matching refs:seq
31 static void show_max(struct seq_file *seq, struct s3c_freq *f) in show_max() argument
33 seq_printf(seq, "MAX: F=%lu, H=%lu, P=%lu, A=%lu\n", in show_max()
37 static int board_show(struct seq_file *seq, void *p) in board_show() argument
44 seq_printf(seq, "no configuration registered\n"); in board_show()
50 seq_printf(seq, "no board definition set?\n"); in board_show()
54 seq_printf(seq, "SDRAM refresh %u ns\n", brd->refresh); in board_show()
55 seq_printf(seq, "auto_io=%u\n", brd->auto_io); in board_show()
56 seq_printf(seq, "need_io=%u\n", brd->need_io); in board_show()
58 show_max(seq, &brd->max); in board_show()
77 static int info_show(struct seq_file *seq, void *p) in info_show() argument
83 seq_printf(seq, "no configuration registered\n"); in info_show()
87 seq_printf(seq, " FCLK %ld Hz\n", cfg->freq.fclk); in info_show()
88 seq_printf(seq, " HCLK %ld Hz (%lu.%lu ns)\n", in info_show()
90 seq_printf(seq, " PCLK %ld Hz\n", cfg->freq.hclk); in info_show()
91 seq_printf(seq, "ARMCLK %ld Hz\n", cfg->freq.armclk); in info_show()
92 seq_printf(seq, "\n"); in info_show()
94 show_max(seq, &cfg->max); in info_show()
96 seq_printf(seq, "Divisors: P=%d, H=%d, A=%d, dvs=%s\n", in info_show()
99 seq_printf(seq, "\n"); in info_show()
101 seq_printf(seq, "lock_pll=%u\n", cfg->lock_pll); in info_show()
119 static int io_show(struct seq_file *seq, void *p) in io_show() argument
129 seq_printf(seq, "no configuration registered\n"); in io_show()
135 seq_printf(seq, "no code to show bank timing\n"); in io_show()
141 seq_printf(seq, "no io timings registered\n"); in io_show()
145 seq_printf(seq, "hclk period is %lu.%lu ns\n", print_ns(cfg->freq.hclk_tns)); in io_show()
150 seq_printf(seq, "bank %d: ", bank); in io_show()
153 seq_printf(seq, "nothing set\n"); in io_show()
157 show_bank(seq, cfg, iob); in io_show()