Path: blob/master/ALFA-W1F1/RTL8814AU/platform/platform_RTK_DMP_usb.c
1307 views
/******************************************************************************1*2* Copyright(c) 2013 - 2017 Realtek Corporation.3*4* This program is free software; you can redistribute it and/or modify it5* under the terms of version 2 of the GNU General Public License as6* published by the Free Software Foundation.7*8* This program is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for11* more details.12*13*****************************************************************************/14#include <drv_types.h>1516int platform_wifi_power_on(void)17{18int ret = 0;19u32 tmp;20tmp = readl((volatile unsigned int *)0xb801a608);21tmp &= 0xffffff00;22tmp |= 0x55;23writel(tmp, (volatile unsigned int *)0xb801a608); /* write dummy register for 1055 */24return ret;25}2627void platform_wifi_power_off(void)28{29}303132