blob: f6faa24754fcb99ac41a5933384e87e148a120a8 [file] [log] [blame]
York Sunb5b06fb2012-12-23 19:25:27 +00001/*
2 * Copyright 2011-2012 Freescale Semiconductor, Inc.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
York Sunb5b06fb2012-12-23 19:25:27 +00005 */
6
7#include <common.h>
8#include <command.h>
9#include <i2c.h>
10#include <netdev.h>
11#include <linux/compiler.h>
12#include <asm/mmu.h>
13#include <asm/processor.h>
14#include <asm/cache.h>
15#include <asm/immap_85xx.h>
16#include <asm/fsl_law.h>
17#include <asm/fsl_serdes.h>
18#include <asm/fsl_portals.h>
19#include <asm/fsl_liodn.h>
20#include <fm_eth.h>
21
22#include "../common/qixis.h"
23#include "../common/vsc3316_3308.h"
Shaveta Leekhacb033742013-07-02 14:43:53 +053024#include "../common/idt8t49n222a_serdes_clk.h"
York Sunb5b06fb2012-12-23 19:25:27 +000025#include "b4860qds.h"
26#include "b4860qds_qixis.h"
27#include "b4860qds_crossbar_con.h"
28
29#define CLK_MUX_SEL_MASK 0x4
30#define ETH_PHY_CLK_OUT 0x4
Shaveta Leekhacb033742013-07-02 14:43:53 +053031#define PLL_NUM 2
York Sunb5b06fb2012-12-23 19:25:27 +000032
33DECLARE_GLOBAL_DATA_PTR;
34
35int checkboard(void)
36{
37 char buf[64];
38 u8 sw;
Simon Glass67ac13b2012-12-13 20:48:48 +000039 struct cpu_type *cpu = gd->arch.cpu;
York Sunb5b06fb2012-12-23 19:25:27 +000040 static const char *const freq[] = {"100", "125", "156.25", "161.13",
41 "122.88", "122.88", "122.88"};
42 int clock;
43
44 printf("Board: %sQDS, ", cpu->name);
45 printf("Sys ID: 0x%02x, Sys Ver: 0x%02x, ",
46 QIXIS_READ(id), QIXIS_READ(arch));
47
48 sw = QIXIS_READ(brdcfg[0]);
49 sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT;
50
51 if (sw < 0x8)
52 printf("vBank: %d\n", sw);
53 else if (sw >= 0x8 && sw <= 0xE)
54 puts("NAND\n");
55 else
56 printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH);
57
58 printf("FPGA: v%d (%s), build %d",
59 (int)QIXIS_READ(scver), qixis_read_tag(buf),
60 (int)qixis_read_minor());
61 /* the timestamp string contains "\n" at the end */
62 printf(" on %s", qixis_read_time(buf));
63
York Sunb5b06fb2012-12-23 19:25:27 +000064 /*
65 * Display the actual SERDES reference clocks as configured by the
66 * dip switches on the board. Note that the SWx registers could
67 * technically be set to force the reference clocks to match the
68 * values that the SERDES expects (or vice versa). For now, however,
69 * we just display both values and hope the user notices when they
70 * don't match.
71 */
72 puts("SERDES Reference Clocks: ");
73 sw = QIXIS_READ(brdcfg[2]);
74 clock = (sw >> 5) & 7;
75 printf("Bank1=%sMHz ", freq[clock]);
76 sw = QIXIS_READ(brdcfg[4]);
77 clock = (sw >> 6) & 3;
78 printf("Bank2=%sMHz\n", freq[clock]);
79
80 return 0;
81}
82
83int select_i2c_ch_pca(u8 ch)
84{
85 int ret;
86
87 /* Selecting proper channel via PCA*/
88 ret = i2c_write(I2C_MUX_PCA_ADDR, 0x0, 1, &ch, 1);
89 if (ret) {
90 printf("PCA: failed to select proper channel.\n");
91 return ret;
92 }
93
94 return 0;
95}
96
97int configure_vsc3316_3308(void)
98{
99 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
100 unsigned int num_vsc16_con, num_vsc08_con;
101 u32 serdes1_prtcl, serdes2_prtcl;
102 int ret;
103
104 serdes1_prtcl = in_be32(&gur->rcwsr[4]) &
105 FSL_CORENET2_RCWSR4_SRDS1_PRTCL;
106 if (!serdes1_prtcl) {
107 printf("SERDES1 is not enabled\n");
108 return 0;
109 }
110 serdes1_prtcl >>= FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT;
111 debug("Using SERDES1 Protocol: 0x%x:\n", serdes1_prtcl);
112
113 serdes2_prtcl = in_be32(&gur->rcwsr[4]) &
114 FSL_CORENET2_RCWSR4_SRDS2_PRTCL;
115 if (!serdes2_prtcl) {
116 printf("SERDES2 is not enabled\n");
117 return 0;
118 }
119 serdes2_prtcl >>= FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT;
120 debug("Using SERDES2 Protocol: 0x%x:\n", serdes2_prtcl);
121
122 switch (serdes1_prtcl) {
123 case 0x2a:
124 case 0x2C:
125 case 0x2D:
126 case 0x2E:
127 /*
128 * Configuration:
129 * SERDES: 1
130 * Lanes: A,B: SGMII
131 * Lanes: C,D,E,F,G,H: CPRI
132 */
133 debug("Configuring crossbar to use onboard SGMII PHYs:"
134 "srds_prctl:%x\n", serdes1_prtcl);
135 num_vsc16_con = NUM_CON_VSC3316;
136 /* Configure VSC3316 crossbar switch */
137 ret = select_i2c_ch_pca(I2C_CH_VSC3316);
138 if (!ret) {
139 ret = vsc3316_config(VSC3316_TX_ADDRESS,
Shaveta Leekha0fecbba2013-03-25 07:40:17 +0000140 vsc16_tx_4sfp_sgmii_12_56,
141 num_vsc16_con);
York Sunb5b06fb2012-12-23 19:25:27 +0000142 if (ret)
143 return ret;
144 ret = vsc3316_config(VSC3316_RX_ADDRESS,
Shaveta Leekha0fecbba2013-03-25 07:40:17 +0000145 vsc16_rx_4sfp_sgmii_12_56,
146 num_vsc16_con);
York Sunb5b06fb2012-12-23 19:25:27 +0000147 if (ret)
148 return ret;
149 } else {
150 return ret;
151 }
152 break;
153
Shaveta Leekha5e5097c2014-02-26 16:06:30 +0530154 case 0x02:
155 case 0x04:
156 case 0x05:
157 case 0x06:
158 case 0x08:
159 case 0x09:
160 case 0x0A:
161 case 0x0B:
162 case 0x0C:
163 case 0x30:
164 case 0x32:
165 case 0x33:
166 case 0x34:
167 case 0x39:
168 case 0x3A:
169 case 0x3C:
170 case 0x3D:
171 case 0x5C:
172 case 0x5D:
173 /*
174 * Configuration:
175 * SERDES: 1
176 * Lanes: A,B: AURORA
177 * Lanes: C,d: SGMII
178 * Lanes: E,F,G,H: CPRI
179 */
180 debug("Configuring crossbar for Aurora, SGMII 3 and 4,"
181 " and CPRI. srds_prctl:%x\n", serdes1_prtcl);
182 num_vsc16_con = NUM_CON_VSC3316;
183 /* Configure VSC3316 crossbar switch */
184 ret = select_i2c_ch_pca(I2C_CH_VSC3316);
185 if (!ret) {
186 ret = vsc3316_config(VSC3316_TX_ADDRESS,
187 vsc16_tx_sfp_sgmii_aurora,
188 num_vsc16_con);
189 if (ret)
190 return ret;
191 ret = vsc3316_config(VSC3316_RX_ADDRESS,
192 vsc16_rx_sfp_sgmii_aurora,
193 num_vsc16_con);
194 if (ret)
195 return ret;
196 } else {
197 return ret;
198 }
199 break;
200
York Sunb5b06fb2012-12-23 19:25:27 +0000201#ifdef CONFIG_PPC_B4420
202 case 0x18:
203 /*
204 * Configuration:
205 * SERDES: 1
206 * Lanes: A,B,C,D: SGMII
207 * Lanes: E,F,G,H: CPRI
208 */
209 debug("Configuring crossbar to use onboard SGMII PHYs:"
210 "srds_prctl:%x\n", serdes1_prtcl);
211 num_vsc16_con = NUM_CON_VSC3316;
212 /* Configure VSC3316 crossbar switch */
213 ret = select_i2c_ch_pca(I2C_CH_VSC3316);
214 if (!ret) {
215 ret = vsc3316_config(VSC3316_TX_ADDRESS,
216 vsc16_tx_sgmii_lane_cd, num_vsc16_con);
217 if (ret)
218 return ret;
219 ret = vsc3316_config(VSC3316_RX_ADDRESS,
220 vsc16_rx_sgmii_lane_cd, num_vsc16_con);
221 if (ret)
222 return ret;
223 } else {
224 return ret;
225 }
226 break;
227#endif
228
229 case 0x3E:
230 case 0x0D:
231 case 0x0E:
232 case 0x12:
233 num_vsc16_con = NUM_CON_VSC3316;
234 /* Configure VSC3316 crossbar switch */
235 ret = select_i2c_ch_pca(I2C_CH_VSC3316);
236 if (!ret) {
237 ret = vsc3316_config(VSC3316_TX_ADDRESS,
238 vsc16_tx_sfp, num_vsc16_con);
239 if (ret)
240 return ret;
241 ret = vsc3316_config(VSC3316_RX_ADDRESS,
242 vsc16_rx_sfp, num_vsc16_con);
243 if (ret)
244 return ret;
245 } else {
246 return ret;
247 }
248 break;
249 default:
250 printf("WARNING:VSC crossbars programming not supported for:%x"
251 " SerDes1 Protocol.\n", serdes1_prtcl);
252 return -1;
253 }
254
255 switch (serdes2_prtcl) {
256 case 0x9E:
257 case 0x9A:
258 case 0x98:
259 case 0xb2:
260 case 0x49:
261 case 0x4E:
262 case 0x8D:
263 case 0x7A:
264 num_vsc08_con = NUM_CON_VSC3308;
265 /* Configure VSC3308 crossbar switch */
266 ret = select_i2c_ch_pca(I2C_CH_VSC3308);
267 if (!ret) {
268 ret = vsc3308_config(VSC3308_TX_ADDRESS,
269 vsc08_tx_amc, num_vsc08_con);
270 if (ret)
271 return ret;
272 ret = vsc3308_config(VSC3308_RX_ADDRESS,
273 vsc08_rx_amc, num_vsc08_con);
274 if (ret)
275 return ret;
276 } else {
277 return ret;
278 }
279 break;
280 default:
281 printf("WARNING:VSC crossbars programming not supported for: %x"
282 " SerDes2 Protocol.\n", serdes2_prtcl);
283 return -1;
284 }
285
286 return 0;
287}
288
Shaveta Leekhacb033742013-07-02 14:43:53 +0530289int config_serdes1_refclks(void)
290{
291 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
292 serdes_corenet_t *srds_regs =
293 (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
294 u32 serdes1_prtcl, lane;
Shaveta Leekha5e5097c2014-02-26 16:06:30 +0530295 unsigned int flag_sgmii_aurora_prtcl = 0;
Shaveta Leekhacb033742013-07-02 14:43:53 +0530296 int ret, i;
297
298 serdes1_prtcl = in_be32(&gur->rcwsr[4]) &
299 FSL_CORENET2_RCWSR4_SRDS1_PRTCL;
300 if (!serdes1_prtcl) {
301 printf("SERDES1 is not enabled\n");
302 return -1;
303 }
304 serdes1_prtcl >>= FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT;
305 debug("Using SERDES1 Protocol: 0x%x:\n", serdes1_prtcl);
306
307 /* Clear SRDS_RSTCTL_RST bit for both PLLs before changing refclks
308 */
309 for (i = 0; i < PLL_NUM; i++)
310 clrbits_be32(&srds_regs->bank[i].rstctl, SRDS_RSTCTL_RST);
311 /* Reconfigure IDT idt8t49n222a device for CPRI to work
312 * For this SerDes1's Refclk1 and refclk2 need to be set
313 * to 122.88MHz
314 */
315 switch (serdes1_prtcl) {
316 case 0x2A:
317 case 0x2C:
318 case 0x2D:
319 case 0x2E:
Shaveta Leekha5e5097c2014-02-26 16:06:30 +0530320 case 0x02:
321 case 0x04:
322 case 0x05:
323 case 0x06:
324 case 0x08:
325 case 0x09:
326 case 0x0A:
327 case 0x0B:
328 case 0x0C:
329 case 0x30:
330 case 0x32:
331 case 0x33:
332 case 0x34:
333 case 0x39:
334 case 0x3A:
335 case 0x3C:
336 case 0x3D:
337 case 0x5C:
338 case 0x5D:
Shaveta Leekhacb033742013-07-02 14:43:53 +0530339 debug("Configuring idt8t49n222a for CPRI SerDes clks:"
340 " for srds_prctl:%x\n", serdes1_prtcl);
341 ret = select_i2c_ch_pca(I2C_CH_IDT);
342 if (!ret) {
343 ret = set_serdes_refclk(IDT_SERDES1_ADDRESS, 1,
344 SERDES_REFCLK_122_88,
345 SERDES_REFCLK_122_88, 0);
346 if (ret) {
347 printf("IDT8T49N222A configuration failed.\n");
348 return ret;
349 } else
350 printf("IDT8T49N222A configured.\n");
351 } else {
352 return ret;
353 }
354 select_i2c_ch_pca(I2C_CH_DEFAULT);
355
356 /* Change SerDes1's Refclk1 to 125MHz for on board
Shaveta Leekha5e5097c2014-02-26 16:06:30 +0530357 * SGMIIs or Aurora to work
Shaveta Leekhacb033742013-07-02 14:43:53 +0530358 */
359 for (lane = 0; lane < SRDS_MAX_LANES; lane++) {
360 enum srds_prtcl lane_prtcl = serdes_get_prtcl
361 (0, serdes1_prtcl, lane);
362 switch (lane_prtcl) {
363 case SGMII_FM1_DTSEC1:
364 case SGMII_FM1_DTSEC2:
365 case SGMII_FM1_DTSEC3:
366 case SGMII_FM1_DTSEC4:
367 case SGMII_FM1_DTSEC5:
368 case SGMII_FM1_DTSEC6:
Shaveta Leekha5e5097c2014-02-26 16:06:30 +0530369 case AURORA:
370 flag_sgmii_aurora_prtcl++;
Shaveta Leekhacb033742013-07-02 14:43:53 +0530371 break;
372 default:
373 break;
374 }
375 }
376
Shaveta Leekha5e5097c2014-02-26 16:06:30 +0530377 if (flag_sgmii_aurora_prtcl)
Shaveta Leekhacb033742013-07-02 14:43:53 +0530378 QIXIS_WRITE(brdcfg[4], QIXIS_SRDS1CLK_125);
379
380 /* Steps For SerDes PLLs reset and reconfiguration after
381 * changing SerDes's refclks
382 */
383 for (i = 0; i < PLL_NUM; i++) {
384 debug("For PLL%d reset and reconfiguration after"
385 " changing refclks\n", i+1);
386 clrbits_be32(&srds_regs->bank[i].rstctl,
387 SRDS_RSTCTL_SDRST_B);
388 udelay(10);
389 clrbits_be32(&srds_regs->bank[i].rstctl,
390 (SRDS_RSTCTL_SDEN | SRDS_RSTCTL_PLLRST_B));
391 udelay(10);
392 setbits_be32(&srds_regs->bank[i].rstctl,
393 SRDS_RSTCTL_RST);
394 setbits_be32(&srds_regs->bank[i].rstctl,
395 (SRDS_RSTCTL_SDEN | SRDS_RSTCTL_PLLRST_B
396 | SRDS_RSTCTL_SDRST_B));
397 }
398 break;
399 default:
400 printf("WARNING:IDT8T49N222A configuration not"
401 " supported for:%x SerDes1 Protocol.\n",
402 serdes1_prtcl);
403 return -1;
404 }
405
406 return 0;
407}
408
York Sunb5b06fb2012-12-23 19:25:27 +0000409int board_early_init_r(void)
410{
411 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
412 const u8 flash_esel = find_tlb_idx((void *)flashbase, 1);
413
414 /*
415 * Remap Boot flash + PROMJET region to caching-inhibited
416 * so that flash can be erased properly.
417 */
418
419 /* Flush d-cache and invalidate i-cache of any FLASH data */
420 flush_dcache();
421 invalidate_icache();
422
423 /* invalidate existing TLB entry for flash + promjet */
424 disable_tlb(flash_esel);
425
426 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
427 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
428 0, flash_esel, BOOKE_PAGESZ_256M, 1);
429
430 set_liodns();
431#ifdef CONFIG_SYS_DPAA_QBMAN
432 setup_portals();
433#endif
Shaveta Leekhacb033742013-07-02 14:43:53 +0530434 /* SerDes1 refclks need to be set again, as default clks
435 * are not suitable for CPRI and onboard SGMIIs to work
436 * simultaneously.
437 * This function will set SerDes1's Refclk1 and refclk2
438 * as per SerDes1 protocols
439 */
440 if (config_serdes1_refclks())
441 printf("SerDes1 Refclks couldn't set properly.\n");
442 else
443 printf("SerDes1 Refclks have been set.\n");
York Sunb5b06fb2012-12-23 19:25:27 +0000444
445 /* Configure VSC3316 and VSC3308 crossbar switches */
446 if (configure_vsc3316_3308())
447 printf("VSC:failed to configure VSC3316/3308.\n");
448 else
449 printf("VSC:VSC3316/3308 successfully configured.\n");
450
451 select_i2c_ch_pca(I2C_CH_DEFAULT);
452
453 return 0;
454}
455
456unsigned long get_board_sys_clk(void)
457{
458 u8 sysclk_conf = QIXIS_READ(brdcfg[1]);
459
460 switch ((sysclk_conf & 0x0C) >> 2) {
461 case QIXIS_CLK_100:
462 return 100000000;
463 case QIXIS_CLK_125:
464 return 125000000;
465 case QIXIS_CLK_133:
466 return 133333333;
467 }
468 return 66666666;
469}
470
471unsigned long get_board_ddr_clk(void)
472{
473 u8 ddrclk_conf = QIXIS_READ(brdcfg[1]);
474
475 switch (ddrclk_conf & 0x03) {
476 case QIXIS_CLK_100:
477 return 100000000;
478 case QIXIS_CLK_125:
479 return 125000000;
480 case QIXIS_CLK_133:
481 return 133333333;
482 }
483 return 66666666;
484}
485
486static int serdes_refclock(u8 sw, u8 sdclk)
487{
488 unsigned int clock;
489 int ret = -1;
490 u8 brdcfg4;
491
492 if (sdclk == 1) {
493 brdcfg4 = QIXIS_READ(brdcfg[4]);
494 if ((brdcfg4 & CLK_MUX_SEL_MASK) == ETH_PHY_CLK_OUT)
495 return SRDS_PLLCR0_RFCK_SEL_125;
496 else
497 clock = (sw >> 5) & 7;
498 } else
499 clock = (sw >> 6) & 3;
500
501 switch (clock) {
502 case 0:
503 ret = SRDS_PLLCR0_RFCK_SEL_100;
504 break;
505 case 1:
506 ret = SRDS_PLLCR0_RFCK_SEL_125;
507 break;
508 case 2:
509 ret = SRDS_PLLCR0_RFCK_SEL_156_25;
510 break;
511 case 3:
512 ret = SRDS_PLLCR0_RFCK_SEL_161_13;
513 break;
514 case 4:
515 case 5:
516 case 6:
517 ret = SRDS_PLLCR0_RFCK_SEL_122_88;
518 break;
519 default:
520 ret = -1;
521 break;
522 }
523
524 return ret;
525}
526
York Sunb5b06fb2012-12-23 19:25:27 +0000527#define NUM_SRDS_BANKS 2
528
529int misc_init_r(void)
530{
531 u8 sw;
532 serdes_corenet_t *srds_regs =
533 (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
534 u32 actual[NUM_SRDS_BANKS];
535 unsigned int i;
536 int clock;
537
538 sw = QIXIS_READ(brdcfg[2]);
539 clock = serdes_refclock(sw, 1);
540 if (clock >= 0)
541 actual[0] = clock;
542 else
543 printf("Warning: SDREFCLK1 switch setting is unsupported\n");
544
545 sw = QIXIS_READ(brdcfg[4]);
546 clock = serdes_refclock(sw, 2);
547 if (clock >= 0)
548 actual[1] = clock;
549 else
550 printf("Warning: SDREFCLK2 switch setting unsupported\n");
551
552 for (i = 0; i < NUM_SRDS_BANKS; i++) {
553 u32 pllcr0 = srds_regs->bank[i].pllcr0;
554 u32 expected = pllcr0 & SRDS_PLLCR0_RFCK_SEL_MASK;
555 if (expected != actual[i]) {
556 printf("Warning: SERDES bank %u expects reference clock"
557 " %sMHz, but actual is %sMHz\n", i + 1,
558 serdes_clock_to_string(expected),
559 serdes_clock_to_string(actual[i]));
560 }
561 }
562
563 return 0;
564}
565
566void ft_board_setup(void *blob, bd_t *bd)
567{
568 phys_addr_t base;
569 phys_size_t size;
570
571 ft_cpu_setup(blob, bd);
572
573 base = getenv_bootm_low();
574 size = getenv_bootm_size();
575
576 fdt_fixup_memory(blob, (u64)base, (u64)size);
577
578#ifdef CONFIG_PCI
579 pci_of_setup(blob, bd);
580#endif
581
582 fdt_fixup_liodn(blob);
583
584#ifdef CONFIG_HAS_FSL_DR_USB
585 fdt_fixup_dr_usb(blob, bd);
586#endif
587
588#ifdef CONFIG_SYS_DPAA_FMAN
589 fdt_fixup_fman_ethernet(blob);
590 fdt_fixup_board_enet(blob);
591#endif
592}
Shaveta Leekha43548892012-12-23 19:25:42 +0000593
594/*
595 * Dump board switch settings.
596 * The bits that cannot be read/sampled via some FPGA or some
597 * registers, they will be displayed as
598 * underscore in binary format. mask[] has those bits.
599 * Some bits are calculated differently than the actual switches
600 * if booting with overriding by FPGA.
601 */
602void qixis_dump_switch(void)
603{
604 int i;
605 u8 sw[5];
606
607 /*
608 * Any bit with 1 means that bit cannot be reverse engineered.
609 * It will be displayed as _ in binary format.
610 */
611 static const u8 mask[] = {0x07, 0, 0, 0xff, 0};
612 char buf[10];
613 u8 brdcfg[16], dutcfg[16];
614
615 for (i = 0; i < 16; i++) {
616 brdcfg[i] = qixis_read(offsetof(struct qixis, brdcfg[0]) + i);
617 dutcfg[i] = qixis_read(offsetof(struct qixis, dutcfg[0]) + i);
618 }
619
620 sw[0] = ((brdcfg[0] & 0x0f) << 4) | \
621 (brdcfg[9] & 0x08);
622 sw[1] = ((dutcfg[1] & 0x01) << 7) | \
623 ((dutcfg[2] & 0x07) << 4) | \
624 ((dutcfg[6] & 0x10) >> 1) | \
625 ((dutcfg[6] & 0x80) >> 5) | \
626 ((dutcfg[1] & 0x40) >> 5) | \
627 (dutcfg[6] & 0x01);
628 sw[2] = dutcfg[0];
629 sw[3] = 0;
630 sw[4] = ((brdcfg[1] & 0x30) << 2) | \
631 ((brdcfg[1] & 0xc0) >> 2) | \
632 (brdcfg[1] & 0x0f);
633
634 puts("DIP switch settings:\n");
635 for (i = 0; i < 5; i++) {
636 printf("SW%d = 0b%s (0x%02x)\n",
637 i + 1, byte_to_binary_mask(sw[i], mask[i], buf), sw[i]);
638 }
639}