Path: blob/master/arch/sh/kernel/cpu/sh4a/hwblk-sh7722.c
17633 views
/*1* arch/sh/kernel/cpu/sh4a/hwblk-sh7722.c2*3* SH7722 hardware block support4*5* Copyright (C) 2009 Magnus Damm6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License as published by9* the Free Software Foundation; either version 2 of the License10*11* This program is distributed in the hope that it will be useful,12* but WITHOUT ANY WARRANTY; without even the implied warranty of13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14* GNU General Public License for more details.15*16* You should have received a copy of the GNU General Public License17* along with this program; if not, write to the Free Software18* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA19*/20#include <linux/init.h>21#include <linux/kernel.h>22#include <linux/io.h>23#include <asm/suspend.h>24#include <asm/hwblk.h>25#include <cpu/sh7722.h>2627/* SH7722 registers */28#define MSTPCR0 0xa415003029#define MSTPCR1 0xa415003430#define MSTPCR2 0xa41500383132/* SH7722 Power Domains */33enum { CORE_AREA, SUB_AREA, CORE_AREA_BM };34static struct hwblk_area sh7722_hwblk_area[] = {35[CORE_AREA] = HWBLK_AREA(0, 0),36[CORE_AREA_BM] = HWBLK_AREA(HWBLK_AREA_FLAG_PARENT, CORE_AREA),37[SUB_AREA] = HWBLK_AREA(0, 0),38};3940/* Table mapping HWBLK to Module Stop Bit and Power Domain */41static struct hwblk sh7722_hwblk[HWBLK_NR] = {42[HWBLK_TLB] = HWBLK(MSTPCR0, 31, CORE_AREA),43[HWBLK_IC] = HWBLK(MSTPCR0, 30, CORE_AREA),44[HWBLK_OC] = HWBLK(MSTPCR0, 29, CORE_AREA),45[HWBLK_URAM] = HWBLK(MSTPCR0, 28, CORE_AREA),46[HWBLK_XYMEM] = HWBLK(MSTPCR0, 26, CORE_AREA),47[HWBLK_INTC] = HWBLK(MSTPCR0, 22, CORE_AREA),48[HWBLK_DMAC] = HWBLK(MSTPCR0, 21, CORE_AREA_BM),49[HWBLK_SHYWAY] = HWBLK(MSTPCR0, 20, CORE_AREA),50[HWBLK_HUDI] = HWBLK(MSTPCR0, 19, CORE_AREA),51[HWBLK_UBC] = HWBLK(MSTPCR0, 17, CORE_AREA),52[HWBLK_TMU] = HWBLK(MSTPCR0, 15, CORE_AREA),53[HWBLK_CMT] = HWBLK(MSTPCR0, 14, SUB_AREA),54[HWBLK_RWDT] = HWBLK(MSTPCR0, 13, SUB_AREA),55[HWBLK_FLCTL] = HWBLK(MSTPCR0, 10, CORE_AREA),56[HWBLK_SCIF0] = HWBLK(MSTPCR0, 7, CORE_AREA),57[HWBLK_SCIF1] = HWBLK(MSTPCR0, 6, CORE_AREA),58[HWBLK_SCIF2] = HWBLK(MSTPCR0, 5, CORE_AREA),59[HWBLK_SIO] = HWBLK(MSTPCR0, 3, CORE_AREA),60[HWBLK_SIOF0] = HWBLK(MSTPCR0, 2, CORE_AREA),61[HWBLK_SIOF1] = HWBLK(MSTPCR0, 1, CORE_AREA),6263[HWBLK_IIC] = HWBLK(MSTPCR1, 9, CORE_AREA),64[HWBLK_RTC] = HWBLK(MSTPCR1, 8, SUB_AREA),6566[HWBLK_TPU] = HWBLK(MSTPCR2, 25, CORE_AREA),67[HWBLK_IRDA] = HWBLK(MSTPCR2, 24, CORE_AREA),68[HWBLK_SDHI] = HWBLK(MSTPCR2, 18, CORE_AREA),69[HWBLK_SIM] = HWBLK(MSTPCR2, 16, CORE_AREA),70[HWBLK_KEYSC] = HWBLK(MSTPCR2, 14, SUB_AREA),71[HWBLK_TSIF] = HWBLK(MSTPCR2, 13, SUB_AREA),72[HWBLK_USBF] = HWBLK(MSTPCR2, 11, CORE_AREA),73[HWBLK_2DG] = HWBLK(MSTPCR2, 9, CORE_AREA_BM),74[HWBLK_SIU] = HWBLK(MSTPCR2, 8, CORE_AREA),75[HWBLK_JPU] = HWBLK(MSTPCR2, 6, CORE_AREA_BM),76[HWBLK_VOU] = HWBLK(MSTPCR2, 5, CORE_AREA_BM),77[HWBLK_BEU] = HWBLK(MSTPCR2, 4, CORE_AREA_BM),78[HWBLK_CEU] = HWBLK(MSTPCR2, 3, CORE_AREA_BM),79[HWBLK_VEU] = HWBLK(MSTPCR2, 2, CORE_AREA_BM),80[HWBLK_VPU] = HWBLK(MSTPCR2, 1, CORE_AREA_BM),81[HWBLK_LCDC] = HWBLK(MSTPCR2, 0, CORE_AREA_BM),82};8384static struct hwblk_info sh7722_hwblk_info = {85.areas = sh7722_hwblk_area,86.nr_areas = ARRAY_SIZE(sh7722_hwblk_area),87.hwblks = sh7722_hwblk,88.nr_hwblks = ARRAY_SIZE(sh7722_hwblk),89};9091int arch_hwblk_sleep_mode(void)92{93if (!sh7722_hwblk_area[CORE_AREA].cnt[HWBLK_CNT_USAGE])94return SUSP_SH_STANDBY | SUSP_SH_SF;9596if (!sh7722_hwblk_area[CORE_AREA_BM].cnt[HWBLK_CNT_USAGE])97return SUSP_SH_SLEEP | SUSP_SH_SF;9899return SUSP_SH_SLEEP;100}101102int __init arch_hwblk_init(void)103{104return hwblk_register(&sh7722_hwblk_info);105}106107108