/* * ARC FreeStation2/5 board support * * Copyright (C) 2009 John Crispin * Copyright (C) 2010 Gabor Juhos * Copyright (C) 2012 Pau Escrich * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation. */ #include #include #include #include #include #include "devices.h" static void __init freestation5_init(void) { rt305x_register_flash(0); rt305x_esw_data.vlan_config = RT305X_ESW_VLAN_CONFIG_WLLLL; rt305x_register_ethernet(); rt305x_register_wifi(); rt305x_register_wdt(); rt305x_register_usb(); } MIPS_MACHINE(RAMIPS_MACH_FREESTATION5, "FREESTATION5", "ARC FreeStation5", freestation5_init);