• Home
  • Raw
  • Download

Lines Matching refs:board

39 static struct board_info board;  variable
755 return board.name; in board_get_name()
803 memcpy(&board, bcm963xx_boards[i], sizeof(board)); in board_prom_init()
808 if (!board.name[0]) { in board_prom_init()
822 if (board.has_pci) { in board_prom_init()
829 if (board.has_pccard) { in board_prom_init()
834 if (board.has_enet0 && !board.enet0.use_internal_phy) { in board_prom_init()
840 if (board.has_enet1 && !board.enet1.use_internal_phy) { in board_prom_init()
855 if (!board.name[0]) in board_setup()
857 pr_info("board name: %s\n", board.name); in board_setup()
860 if (bcm63xx_get_cpu_id() != board.expected_cpu_id) in board_setup()
877 if (board.has_uart0) in board_register_devices()
880 if (board.has_uart1) in board_register_devices()
883 if (board.has_pccard) in board_register_devices()
886 if (board.has_enet0 && in board_register_devices()
887 !bcm63xx_nvram_get_mac_address(board.enet0.mac_addr)) in board_register_devices()
888 bcm63xx_enet_register(0, &board.enet0); in board_register_devices()
890 if (board.has_enet1 && in board_register_devices()
891 !bcm63xx_nvram_get_mac_address(board.enet1.mac_addr)) in board_register_devices()
892 bcm63xx_enet_register(1, &board.enet1); in board_register_devices()
894 if (board.has_enetsw && in board_register_devices()
895 !bcm63xx_nvram_get_mac_address(board.enetsw.mac_addr)) in board_register_devices()
896 bcm63xx_enetsw_register(&board.enetsw); in board_register_devices()
898 if (board.has_usbd) in board_register_devices()
899 bcm63xx_usbd_register(&board.usbd); in board_register_devices()
901 if (board.has_dsp) in board_register_devices()
902 bcm63xx_dsp_register(&board.dsp); in board_register_devices()
923 bcm63xx_led_data.num_leds = ARRAY_SIZE(board.leds); in board_register_devices()
924 bcm63xx_led_data.leds = board.leds; in board_register_devices()
928 if (board.ephy_reset_gpio && board.ephy_reset_gpio_flags) in board_register_devices()
929 gpio_request_one(board.ephy_reset_gpio, in board_register_devices()
930 board.ephy_reset_gpio_flags, "ephy-reset"); in board_register_devices()