| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310 | /* * omap_hwmod_33xx_data.c: Hardware modules present on the AM33XX chips * * Copyright (C) {2012} Texas Instruments Incorporated - http://www.ti.com/ * * This file is automatically generated from the AM33XX hardware databases. * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation version 2. * * This program is distributed "as is" WITHOUT ANY WARRANTY of any * kind, whether express or implied; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */#include <linux/i2c-omap.h>#include "omap_hwmod.h"#include <linux/platform_data/gpio-omap.h>#include <linux/platform_data/spi-omap2-mcspi.h>#include "omap_hwmod_common_data.h"#include "control.h"#include "cm33xx.h"#include "prm33xx.h"#include "prm-regbits-33xx.h"#include "i2c.h"#include "mmc.h"/* * IP blocks *//* * 'emif_fw' class * instance(s): emif_fw */static struct omap_hwmod_class am33xx_emif_fw_hwmod_class = {	.name		= "emif_fw",};/* emif_fw */static struct omap_hwmod am33xx_emif_fw_hwmod = {	.name		= "emif_fw",	.class		= &am33xx_emif_fw_hwmod_class,	.clkdm_name	= "l4fw_clkdm",	.main_clk	= "l4fw_gclk",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_EMIF_FW_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'emif' class * instance(s): emif */static struct omap_hwmod_class_sysconfig am33xx_emif_sysc = {	.rev_offs	= 0x0000,};static struct omap_hwmod_class am33xx_emif_hwmod_class = {	.name		= "emif",	.sysc		= &am33xx_emif_sysc,};static struct omap_hwmod_irq_info am33xx_emif_irqs[] = {	{ .name = "ddrerr0", .irq = 101 + OMAP_INTC_START, },	{ .irq = -1 },};/* emif */static struct omap_hwmod am33xx_emif_hwmod = {	.name		= "emif",	.class		= &am33xx_emif_hwmod_class,	.clkdm_name	= "l3_clkdm",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.mpu_irqs	= am33xx_emif_irqs,	.main_clk	= "dpll_ddr_m2_div2_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_EMIF_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'l3' class * instance(s): l3_main, l3_s, l3_instr */static struct omap_hwmod_class am33xx_l3_hwmod_class = {	.name		= "l3",};/* l3_main (l3_fast) */static struct omap_hwmod_irq_info am33xx_l3_main_irqs[] = {	{ .name = "l3debug", .irq = 9 + OMAP_INTC_START, },	{ .name = "l3appint", .irq = 10 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_l3_main_hwmod = {	.name		= "l3_main",	.class		= &am33xx_l3_hwmod_class,	.clkdm_name	= "l3_clkdm",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.mpu_irqs	= am33xx_l3_main_irqs,	.main_clk	= "l3_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_L3_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* l3_s */static struct omap_hwmod am33xx_l3_s_hwmod = {	.name		= "l3_s",	.class		= &am33xx_l3_hwmod_class,	.clkdm_name	= "l3s_clkdm",};/* l3_instr */static struct omap_hwmod am33xx_l3_instr_hwmod = {	.name		= "l3_instr",	.class		= &am33xx_l3_hwmod_class,	.clkdm_name	= "l3_clkdm",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.main_clk	= "l3_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_L3_INSTR_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'l4' class * instance(s): l4_ls, l4_hs, l4_wkup, l4_fw */static struct omap_hwmod_class am33xx_l4_hwmod_class = {	.name		= "l4",};/* l4_ls */static struct omap_hwmod am33xx_l4_ls_hwmod = {	.name		= "l4_ls",	.class		= &am33xx_l4_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_L4LS_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* l4_hs */static struct omap_hwmod am33xx_l4_hs_hwmod = {	.name		= "l4_hs",	.class		= &am33xx_l4_hwmod_class,	.clkdm_name	= "l4hs_clkdm",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.main_clk	= "l4hs_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_L4HS_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* l4_wkup */static struct omap_hwmod am33xx_l4_wkup_hwmod = {	.name		= "l4_wkup",	.class		= &am33xx_l4_hwmod_class,	.clkdm_name	= "l4_wkup_clkdm",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_L4WKUP_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* l4_fw */static struct omap_hwmod am33xx_l4_fw_hwmod = {	.name		= "l4_fw",	.class		= &am33xx_l4_hwmod_class,	.clkdm_name	= "l4fw_clkdm",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_L4FW_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'mpu' class */static struct omap_hwmod_class am33xx_mpu_hwmod_class = {	.name	= "mpu",};/* mpu */static struct omap_hwmod_irq_info am33xx_mpu_irqs[] = {	{ .name = "emuint", .irq = 0 + OMAP_INTC_START, },	{ .name = "commtx", .irq = 1 + OMAP_INTC_START, },	{ .name = "commrx", .irq = 2 + OMAP_INTC_START, },	{ .name = "bench", .irq = 3 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_mpu_hwmod = {	.name		= "mpu",	.class		= &am33xx_mpu_hwmod_class,	.clkdm_name	= "mpu_clkdm",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.mpu_irqs	= am33xx_mpu_irqs,	.main_clk	= "dpll_mpu_m2_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_MPU_MPU_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'wakeup m3' class * Wakeup controller sub-system under wakeup domain */static struct omap_hwmod_class am33xx_wkup_m3_hwmod_class = {	.name		= "wkup_m3",};static struct omap_hwmod_rst_info am33xx_wkup_m3_resets[] = {	{ .name = "wkup_m3", .rst_shift = 3, .st_shift = 5 },};static struct omap_hwmod_irq_info am33xx_wkup_m3_irqs[] = {	{ .name = "txev", .irq = 78 + OMAP_INTC_START, },	{ .irq = -1 },};/* wkup_m3  */static struct omap_hwmod am33xx_wkup_m3_hwmod = {	.name		= "wkup_m3",	.class		= &am33xx_wkup_m3_hwmod_class,	.clkdm_name	= "l4_wkup_aon_clkdm",	.flags		= HWMOD_INIT_NO_RESET,	/* Keep hardreset asserted */	.mpu_irqs	= am33xx_wkup_m3_irqs,	.main_clk	= "dpll_core_m4_div2_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_WKUP_M3_CLKCTRL_OFFSET,			.rstctrl_offs	= AM33XX_RM_WKUP_RSTCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.rst_lines	= am33xx_wkup_m3_resets,	.rst_lines_cnt	= ARRAY_SIZE(am33xx_wkup_m3_resets),};/* * 'pru-icss' class * Programmable Real-Time Unit and Industrial Communication Subsystem */static struct omap_hwmod_class am33xx_pruss_hwmod_class = {	.name	= "pruss",};static struct omap_hwmod_rst_info am33xx_pruss_resets[] = {	{ .name = "pruss", .rst_shift = 1 },};static struct omap_hwmod_irq_info am33xx_pruss_irqs[] = {	{ .name = "evtout0", .irq = 20 + OMAP_INTC_START, },	{ .name = "evtout1", .irq = 21 + OMAP_INTC_START, },	{ .name = "evtout2", .irq = 22 + OMAP_INTC_START, },	{ .name = "evtout3", .irq = 23 + OMAP_INTC_START, },	{ .name = "evtout4", .irq = 24 + OMAP_INTC_START, },	{ .name = "evtout5", .irq = 25 + OMAP_INTC_START, },	{ .name = "evtout6", .irq = 26 + OMAP_INTC_START, },	{ .name = "evtout7", .irq = 27 + OMAP_INTC_START, },	{ .irq = -1 },};/* pru-icss *//* Pseudo hwmod for reset control purpose only */static struct omap_hwmod am33xx_pruss_hwmod = {	.name		= "pruss",	.class		= &am33xx_pruss_hwmod_class,	.clkdm_name	= "pruss_ocp_clkdm",	.mpu_irqs	= am33xx_pruss_irqs,	.main_clk	= "pruss_ocp_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_PRUSS_CLKCTRL_OFFSET,			.rstctrl_offs	= AM33XX_RM_PER_RSTCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.rst_lines	= am33xx_pruss_resets,	.rst_lines_cnt	= ARRAY_SIZE(am33xx_pruss_resets),};/* gfx *//* Pseudo hwmod for reset control purpose only */static struct omap_hwmod_class am33xx_gfx_hwmod_class = {	.name	= "gfx",};static struct omap_hwmod_rst_info am33xx_gfx_resets[] = {	{ .name = "gfx", .rst_shift = 0 },};static struct omap_hwmod_irq_info am33xx_gfx_irqs[] = {	{ .name = "gfxint", .irq = 37 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_gfx_hwmod = {	.name		= "gfx",	.class		= &am33xx_gfx_hwmod_class,	.clkdm_name	= "gfx_l3_clkdm",	.mpu_irqs	= am33xx_gfx_irqs,	.main_clk	= "gfx_fck_div_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_GFX_GFX_CLKCTRL_OFFSET,			.rstctrl_offs	= AM33XX_RM_GFX_RSTCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.rst_lines	= am33xx_gfx_resets,	.rst_lines_cnt	= ARRAY_SIZE(am33xx_gfx_resets),};/* * 'prcm' class * power and reset manager (whole prcm infrastructure) */static struct omap_hwmod_class am33xx_prcm_hwmod_class = {	.name	= "prcm",};/* prcm */static struct omap_hwmod am33xx_prcm_hwmod = {	.name		= "prcm",	.class		= &am33xx_prcm_hwmod_class,	.clkdm_name	= "l4_wkup_clkdm",};/* * 'adc/tsc' class * TouchScreen Controller (Anolog-To-Digital Converter) */static struct omap_hwmod_class_sysconfig am33xx_adc_tsc_sysc = {	.rev_offs	= 0x00,	.sysc_offs	= 0x10,	.sysc_flags	= SYSC_HAS_SIDLEMODE,	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |			SIDLE_SMART_WKUP),	.sysc_fields	= &omap_hwmod_sysc_type2,};static struct omap_hwmod_class am33xx_adc_tsc_hwmod_class = {	.name		= "adc_tsc",	.sysc		= &am33xx_adc_tsc_sysc,};static struct omap_hwmod_irq_info am33xx_adc_tsc_irqs[] = {	{ .irq = 16 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_adc_tsc_hwmod = {	.name		= "adc_tsc",	.class		= &am33xx_adc_tsc_hwmod_class,	.clkdm_name	= "l4_wkup_clkdm",	.mpu_irqs	= am33xx_adc_tsc_irqs,	.main_clk	= "adc_tsc_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_ADC_TSC_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * Modules omap_hwmod structures * * The following IPs are excluded for the moment because: * - They do not need an explicit SW control using omap_hwmod API. * - They still need to be validated with the driver *   properly adapted to omap_hwmod / omap_device * *    - cEFUSE (doesn't fall under any ocp_if) *    - clkdiv32k *    - debugss *    - ocmc ram *    - ocp watch point *    - aes0 *    - sha0 */#if 0/* * 'cefuse' class */static struct omap_hwmod_class am33xx_cefuse_hwmod_class = {	.name		= "cefuse",};static struct omap_hwmod am33xx_cefuse_hwmod = {	.name		= "cefuse",	.class		= &am33xx_cefuse_hwmod_class,	.clkdm_name	= "l4_cefuse_clkdm",	.main_clk	= "cefuse_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_CEFUSE_CEFUSE_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'clkdiv32k' class */static struct omap_hwmod_class am33xx_clkdiv32k_hwmod_class = {	.name		= "clkdiv32k",};static struct omap_hwmod am33xx_clkdiv32k_hwmod = {	.name		= "clkdiv32k",	.class		= &am33xx_clkdiv32k_hwmod_class,	.clkdm_name	= "clk_24mhz_clkdm",	.main_clk	= "clkdiv32k_ick",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_CLKDIV32K_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'debugss' class * debug sub system */static struct omap_hwmod_class am33xx_debugss_hwmod_class = {	.name		= "debugss",};static struct omap_hwmod am33xx_debugss_hwmod = {	.name		= "debugss",	.class		= &am33xx_debugss_hwmod_class,	.clkdm_name	= "l3_aon_clkdm",	.main_clk	= "debugss_ick",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_DEBUGSS_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* ocmcram */static struct omap_hwmod_class am33xx_ocmcram_hwmod_class = {	.name = "ocmcram",};static struct omap_hwmod am33xx_ocmcram_hwmod = {	.name		= "ocmcram",	.class		= &am33xx_ocmcram_hwmod_class,	.clkdm_name	= "l3_clkdm",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.main_clk	= "l3_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_OCMCRAM_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* ocpwp */static struct omap_hwmod_class am33xx_ocpwp_hwmod_class = {	.name		= "ocpwp",};static struct omap_hwmod am33xx_ocpwp_hwmod = {	.name		= "ocpwp",	.class		= &am33xx_ocpwp_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_OCPWP_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'aes' class */static struct omap_hwmod_class am33xx_aes_hwmod_class = {	.name		= "aes",};static struct omap_hwmod_irq_info am33xx_aes0_irqs[] = {	{ .irq = 102 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_aes0_hwmod = {	.name		= "aes0",	.class		= &am33xx_aes_hwmod_class,	.clkdm_name	= "l3_clkdm",	.mpu_irqs	= am33xx_aes0_irqs,	.main_clk	= "l3_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_AES0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* sha0 */static struct omap_hwmod_class am33xx_sha0_hwmod_class = {	.name		= "sha0",};static struct omap_hwmod_irq_info am33xx_sha0_irqs[] = {	{ .irq = 108 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_sha0_hwmod = {	.name		= "sha0",	.class		= &am33xx_sha0_hwmod_class,	.clkdm_name	= "l3_clkdm",	.mpu_irqs	= am33xx_sha0_irqs,	.main_clk	= "l3_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_SHA0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};#endif/* 'smartreflex' class */static struct omap_hwmod_class am33xx_smartreflex_hwmod_class = {	.name		= "smartreflex",};/* smartreflex0 */static struct omap_hwmod_irq_info am33xx_smartreflex0_irqs[] = {	{ .irq = 120 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_smartreflex0_hwmod = {	.name		= "smartreflex0",	.class		= &am33xx_smartreflex_hwmod_class,	.clkdm_name	= "l4_wkup_clkdm",	.mpu_irqs	= am33xx_smartreflex0_irqs,	.main_clk	= "smartreflex0_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_SMARTREFLEX0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* smartreflex1 */static struct omap_hwmod_irq_info am33xx_smartreflex1_irqs[] = {	{ .irq = 121 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_smartreflex1_hwmod = {	.name		= "smartreflex1",	.class		= &am33xx_smartreflex_hwmod_class,	.clkdm_name	= "l4_wkup_clkdm",	.mpu_irqs	= am33xx_smartreflex1_irqs,	.main_clk	= "smartreflex1_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_SMARTREFLEX1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'control' module class */static struct omap_hwmod_class am33xx_control_hwmod_class = {	.name		= "control",};static struct omap_hwmod_irq_info am33xx_control_irqs[] = {	{ .irq = 8 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_control_hwmod = {	.name		= "control",	.class		= &am33xx_control_hwmod_class,	.clkdm_name	= "l4_wkup_clkdm",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.mpu_irqs	= am33xx_control_irqs,	.main_clk	= "dpll_core_m4_div2_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_CONTROL_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'cpgmac' class * cpsw/cpgmac sub system */static struct omap_hwmod_class_sysconfig am33xx_cpgmac_sysc = {	.rev_offs	= 0x0,	.sysc_offs	= 0x8,	.syss_offs	= 0x4,	.sysc_flags	= (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE |			   SYSS_HAS_RESET_STATUS),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | MSTANDBY_FORCE |			   MSTANDBY_NO),	.sysc_fields	= &omap_hwmod_sysc_type3,};static struct omap_hwmod_class am33xx_cpgmac0_hwmod_class = {	.name		= "cpgmac0",	.sysc		= &am33xx_cpgmac_sysc,};static struct omap_hwmod_irq_info am33xx_cpgmac0_irqs[] = {	{ .name = "c0_rx_thresh_pend", .irq = 40 + OMAP_INTC_START, },	{ .name = "c0_rx_pend", .irq = 41 + OMAP_INTC_START, },	{ .name = "c0_tx_pend", .irq = 42 + OMAP_INTC_START, },	{ .name = "c0_misc_pend", .irq = 43 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_cpgmac0_hwmod = {	.name		= "cpgmac0",	.class		= &am33xx_cpgmac0_hwmod_class,	.clkdm_name	= "cpsw_125mhz_clkdm",	.flags		= (HWMOD_SWSUP_SIDLE | HWMOD_SWSUP_MSTANDBY),	.mpu_irqs	= am33xx_cpgmac0_irqs,	.main_clk	= "cpsw_125mhz_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_CPGMAC0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * mdio class */static struct omap_hwmod_class am33xx_mdio_hwmod_class = {	.name		= "davinci_mdio",};static struct omap_hwmod am33xx_mdio_hwmod = {	.name		= "davinci_mdio",	.class		= &am33xx_mdio_hwmod_class,	.clkdm_name	= "cpsw_125mhz_clkdm",	.main_clk	= "cpsw_125mhz_gclk",};/* * dcan class */static struct omap_hwmod_class am33xx_dcan_hwmod_class = {	.name = "d_can",};/* dcan0 */static struct omap_hwmod_irq_info am33xx_dcan0_irqs[] = {	{ .name = "d_can_ms", .irq = 52 + OMAP_INTC_START, },	{ .name = "d_can_mo", .irq = 53 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_dcan0_hwmod = {	.name		= "d_can0",	.class		= &am33xx_dcan_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_dcan0_irqs,	.main_clk	= "dcan0_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_DCAN0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* dcan1 */static struct omap_hwmod_irq_info am33xx_dcan1_irqs[] = {	{ .name = "d_can_ms", .irq = 55 + OMAP_INTC_START, },	{ .name = "d_can_mo", .irq = 56 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_dcan1_hwmod = {	.name		= "d_can1",	.class		= &am33xx_dcan_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_dcan1_irqs,	.main_clk	= "dcan1_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_DCAN1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* elm */static struct omap_hwmod_class_sysconfig am33xx_elm_sysc = {	.rev_offs	= 0x0000,	.sysc_offs	= 0x0010,	.syss_offs	= 0x0014,	.sysc_flags	= (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |			SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE |			SYSS_HAS_RESET_STATUS),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),	.sysc_fields	= &omap_hwmod_sysc_type1,};static struct omap_hwmod_class am33xx_elm_hwmod_class = {	.name		= "elm",	.sysc		= &am33xx_elm_sysc,};static struct omap_hwmod_irq_info am33xx_elm_irqs[] = {	{ .irq = 4 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_elm_hwmod = {	.name		= "elm",	.class		= &am33xx_elm_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_elm_irqs,	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_ELM_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'epwmss' class: ecap0,1,2,  ehrpwm0,1,2 */static struct omap_hwmod_class_sysconfig am33xx_epwmss_sysc = {	.rev_offs	= 0x0,	.sysc_offs	= 0x4,	.sysc_flags	= (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |			SIDLE_SMART_WKUP | MSTANDBY_FORCE | MSTANDBY_NO |			MSTANDBY_SMART | MSTANDBY_SMART_WKUP),	.sysc_fields	= &omap_hwmod_sysc_type2,};static struct omap_hwmod_class am33xx_epwmss_hwmod_class = {	.name		= "epwmss",	.sysc		= &am33xx_epwmss_sysc,};/* ehrpwm0 */static struct omap_hwmod_irq_info am33xx_ehrpwm0_irqs[] = {	{ .name = "int", .irq = 86 + OMAP_INTC_START, },	{ .name = "tzint", .irq = 58 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_ehrpwm0_hwmod = {	.name		= "ehrpwm0",	.class		= &am33xx_epwmss_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_ehrpwm0_irqs,	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_EPWMSS0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* ehrpwm1 */static struct omap_hwmod_irq_info am33xx_ehrpwm1_irqs[] = {	{ .name = "int", .irq = 87 + OMAP_INTC_START, },	{ .name = "tzint", .irq = 59 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_ehrpwm1_hwmod = {	.name		= "ehrpwm1",	.class		= &am33xx_epwmss_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_ehrpwm1_irqs,	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_EPWMSS1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* ehrpwm2 */static struct omap_hwmod_irq_info am33xx_ehrpwm2_irqs[] = {	{ .name = "int", .irq = 39 + OMAP_INTC_START, },	{ .name = "tzint", .irq = 60 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_ehrpwm2_hwmod = {	.name		= "ehrpwm2",	.class		= &am33xx_epwmss_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_ehrpwm2_irqs,	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_EPWMSS2_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* ecap0 */static struct omap_hwmod_irq_info am33xx_ecap0_irqs[] = {	{ .irq = 31 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_ecap0_hwmod = {	.name		= "ecap0",	.class		= &am33xx_epwmss_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_ecap0_irqs,	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_EPWMSS0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* ecap1 */static struct omap_hwmod_irq_info am33xx_ecap1_irqs[] = {	{ .irq = 47 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_ecap1_hwmod = {	.name		= "ecap1",	.class		= &am33xx_epwmss_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_ecap1_irqs,	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_EPWMSS1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* ecap2 */static struct omap_hwmod_irq_info am33xx_ecap2_irqs[] = {	{ .irq = 61 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_ecap2_hwmod = {	.name		= "ecap2",	.mpu_irqs	= am33xx_ecap2_irqs,	.class		= &am33xx_epwmss_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_EPWMSS2_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'gpio' class: for gpio 0,1,2,3 */static struct omap_hwmod_class_sysconfig am33xx_gpio_sysc = {	.rev_offs	= 0x0000,	.sysc_offs	= 0x0010,	.syss_offs	= 0x0114,	.sysc_flags	= (SYSC_HAS_AUTOIDLE | SYSC_HAS_ENAWAKEUP |			  SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET |			  SYSS_HAS_RESET_STATUS),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |			  SIDLE_SMART_WKUP),	.sysc_fields	= &omap_hwmod_sysc_type1,};static struct omap_hwmod_class am33xx_gpio_hwmod_class = {	.name		= "gpio",	.sysc		= &am33xx_gpio_sysc,	.rev		= 2,};static struct omap_gpio_dev_attr gpio_dev_attr = {	.bank_width	= 32,	.dbck_flag	= true,};/* gpio0 */static struct omap_hwmod_opt_clk gpio0_opt_clks[] = {	{ .role = "dbclk", .clk = "gpio0_dbclk" },};static struct omap_hwmod_irq_info am33xx_gpio0_irqs[] = {	{ .irq = 96 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_gpio0_hwmod = {	.name		= "gpio1",	.class		= &am33xx_gpio_hwmod_class,	.clkdm_name	= "l4_wkup_clkdm",	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,	.mpu_irqs	= am33xx_gpio0_irqs,	.main_clk	= "dpll_core_m4_div2_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_GPIO0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.opt_clks	= gpio0_opt_clks,	.opt_clks_cnt	= ARRAY_SIZE(gpio0_opt_clks),	.dev_attr	= &gpio_dev_attr,};/* gpio1 */static struct omap_hwmod_irq_info am33xx_gpio1_irqs[] = {	{ .irq = 98 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_opt_clk gpio1_opt_clks[] = {	{ .role = "dbclk", .clk = "gpio1_dbclk" },};static struct omap_hwmod am33xx_gpio1_hwmod = {	.name		= "gpio2",	.class		= &am33xx_gpio_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,	.mpu_irqs	= am33xx_gpio1_irqs,	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_GPIO1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.opt_clks	= gpio1_opt_clks,	.opt_clks_cnt	= ARRAY_SIZE(gpio1_opt_clks),	.dev_attr	= &gpio_dev_attr,};/* gpio2 */static struct omap_hwmod_irq_info am33xx_gpio2_irqs[] = {	{ .irq = 32 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_opt_clk gpio2_opt_clks[] = {	{ .role = "dbclk", .clk = "gpio2_dbclk" },};static struct omap_hwmod am33xx_gpio2_hwmod = {	.name		= "gpio3",	.class		= &am33xx_gpio_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,	.mpu_irqs	= am33xx_gpio2_irqs,	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_GPIO2_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.opt_clks	= gpio2_opt_clks,	.opt_clks_cnt	= ARRAY_SIZE(gpio2_opt_clks),	.dev_attr	= &gpio_dev_attr,};/* gpio3 */static struct omap_hwmod_irq_info am33xx_gpio3_irqs[] = {	{ .irq = 62 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_opt_clk gpio3_opt_clks[] = {	{ .role = "dbclk", .clk = "gpio3_dbclk" },};static struct omap_hwmod am33xx_gpio3_hwmod = {	.name		= "gpio4",	.class		= &am33xx_gpio_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,	.mpu_irqs	= am33xx_gpio3_irqs,	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_GPIO3_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.opt_clks	= gpio3_opt_clks,	.opt_clks_cnt	= ARRAY_SIZE(gpio3_opt_clks),	.dev_attr	= &gpio_dev_attr,};/* gpmc */static struct omap_hwmod_class_sysconfig gpmc_sysc = {	.rev_offs	= 0x0,	.sysc_offs	= 0x10,	.syss_offs	= 0x14,	.sysc_flags	= (SYSC_HAS_AUTOIDLE | SYSC_HAS_SIDLEMODE |			SYSC_HAS_SOFTRESET | SYSS_HAS_RESET_STATUS),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),	.sysc_fields	= &omap_hwmod_sysc_type1,};static struct omap_hwmod_class am33xx_gpmc_hwmod_class = {	.name		= "gpmc",	.sysc		= &gpmc_sysc,};static struct omap_hwmod_irq_info am33xx_gpmc_irqs[] = {	{ .irq = 100 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_gpmc_hwmod = {	.name		= "gpmc",	.class		= &am33xx_gpmc_hwmod_class,	.clkdm_name	= "l3s_clkdm",	.flags		= (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET),	.mpu_irqs	= am33xx_gpmc_irqs,	.main_clk	= "l3s_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_GPMC_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* 'i2c' class */static struct omap_hwmod_class_sysconfig am33xx_i2c_sysc = {	.sysc_offs	= 0x0010,	.syss_offs	= 0x0090,	.sysc_flags	= (SYSC_HAS_AUTOIDLE | SYSC_HAS_CLOCKACTIVITY |			  SYSC_HAS_ENAWAKEUP | SYSC_HAS_SIDLEMODE |			  SYSC_HAS_SOFTRESET | SYSS_HAS_RESET_STATUS),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |			  SIDLE_SMART_WKUP),	.sysc_fields	= &omap_hwmod_sysc_type1,};static struct omap_hwmod_class i2c_class = {	.name		= "i2c",	.sysc		= &am33xx_i2c_sysc,	.rev		= OMAP_I2C_IP_VERSION_2,	.reset		= &omap_i2c_reset,};static struct omap_i2c_dev_attr i2c_dev_attr = {	.flags = OMAP_I2C_FLAG_BUS_SHIFT_NONE,};/* i2c1 */static struct omap_hwmod_irq_info i2c1_mpu_irqs[] = {	{ .irq = 70 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_dma_info i2c1_edma_reqs[] = {	{ .name = "tx", .dma_req = 0, },	{ .name = "rx", .dma_req = 0, },	{ .dma_req = -1 }};static struct omap_hwmod am33xx_i2c1_hwmod = {	.name		= "i2c1",	.class		= &i2c_class,	.clkdm_name	= "l4_wkup_clkdm",	.mpu_irqs	= i2c1_mpu_irqs,	.sdma_reqs	= i2c1_edma_reqs,	.flags		= HWMOD_16BIT_REG | HWMOD_SET_DEFAULT_CLOCKACT,	.main_clk	= "dpll_per_m2_div4_wkupdm_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_I2C0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.dev_attr	= &i2c_dev_attr,};/* i2c1 */static struct omap_hwmod_irq_info i2c2_mpu_irqs[] = {	{ .irq = 71 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_dma_info i2c2_edma_reqs[] = {	{ .name = "tx", .dma_req = 0, },	{ .name = "rx", .dma_req = 0, },	{ .dma_req = -1 }};static struct omap_hwmod am33xx_i2c2_hwmod = {	.name		= "i2c2",	.class		= &i2c_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= i2c2_mpu_irqs,	.sdma_reqs	= i2c2_edma_reqs,	.flags		= HWMOD_16BIT_REG | HWMOD_SET_DEFAULT_CLOCKACT,	.main_clk	= "dpll_per_m2_div4_ck",	.prcm		= {		.omap4 = {			.clkctrl_offs	= AM33XX_CM_PER_I2C1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.dev_attr	= &i2c_dev_attr,};/* i2c3 */static struct omap_hwmod_dma_info i2c3_edma_reqs[] = {	{ .name = "tx", .dma_req = 0, },	{ .name = "rx", .dma_req = 0, },	{ .dma_req = -1 }};static struct omap_hwmod_irq_info i2c3_mpu_irqs[] = {	{ .irq = 30 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_i2c3_hwmod = {	.name		= "i2c3",	.class		= &i2c_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= i2c3_mpu_irqs,	.sdma_reqs	= i2c3_edma_reqs,	.flags		= HWMOD_16BIT_REG | HWMOD_SET_DEFAULT_CLOCKACT,	.main_clk	= "dpll_per_m2_div4_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_I2C2_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.dev_attr	= &i2c_dev_attr,};/* lcdc */static struct omap_hwmod_class_sysconfig lcdc_sysc = {	.rev_offs	= 0x0,	.sysc_offs	= 0x54,	.sysc_flags	= (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),	.sysc_fields	= &omap_hwmod_sysc_type2,};static struct omap_hwmod_class am33xx_lcdc_hwmod_class = {	.name		= "lcdc",	.sysc		= &lcdc_sysc,};static struct omap_hwmod_irq_info am33xx_lcdc_irqs[] = {	{ .irq = 36 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_lcdc_hwmod = {	.name		= "lcdc",	.class		= &am33xx_lcdc_hwmod_class,	.clkdm_name	= "lcdc_clkdm",	.mpu_irqs	= am33xx_lcdc_irqs,	.flags		= HWMOD_SWSUP_SIDLE | HWMOD_SWSUP_MSTANDBY,	.main_clk	= "lcd_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_LCDC_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'mailbox' class * mailbox module allowing communication between the on-chip processors using a * queued mailbox-interrupt mechanism. */static struct omap_hwmod_class_sysconfig am33xx_mailbox_sysc = {	.rev_offs	= 0x0000,	.sysc_offs	= 0x0010,	.sysc_flags	= (SYSC_HAS_RESET_STATUS | SYSC_HAS_SIDLEMODE |			  SYSC_HAS_SOFTRESET),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),	.sysc_fields	= &omap_hwmod_sysc_type2,};static struct omap_hwmod_class am33xx_mailbox_hwmod_class = {	.name	= "mailbox",	.sysc	= &am33xx_mailbox_sysc,};static struct omap_hwmod_irq_info am33xx_mailbox_irqs[] = {	{ .irq = 77 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_mailbox_hwmod = {	.name		= "mailbox",	.class		= &am33xx_mailbox_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_mailbox_irqs,	.main_clk	= "l4ls_gclk",	.prcm = {		.omap4 = {			.clkctrl_offs	= AM33XX_CM_PER_MAILBOX0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'mcasp' class */static struct omap_hwmod_class_sysconfig am33xx_mcasp_sysc = {	.rev_offs	= 0x0,	.sysc_offs	= 0x4,	.sysc_flags	= SYSC_HAS_SIDLEMODE,	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),	.sysc_fields	= &omap_hwmod_sysc_type3,};static struct omap_hwmod_class am33xx_mcasp_hwmod_class = {	.name		= "mcasp",	.sysc		= &am33xx_mcasp_sysc,};/* mcasp0 */static struct omap_hwmod_irq_info am33xx_mcasp0_irqs[] = {	{ .name = "ax", .irq = 80 + OMAP_INTC_START, },	{ .name = "ar", .irq = 81 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_dma_info am33xx_mcasp0_edma_reqs[] = {	{ .name = "tx", .dma_req = 8, },	{ .name = "rx", .dma_req = 9, },	{ .dma_req = -1 }};static struct omap_hwmod am33xx_mcasp0_hwmod = {	.name		= "mcasp0",	.class		= &am33xx_mcasp_hwmod_class,	.clkdm_name	= "l3s_clkdm",	.mpu_irqs	= am33xx_mcasp0_irqs,	.sdma_reqs	= am33xx_mcasp0_edma_reqs,	.main_clk	= "mcasp0_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_MCASP0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* mcasp1 */static struct omap_hwmod_irq_info am33xx_mcasp1_irqs[] = {	{ .name = "ax", .irq = 82 + OMAP_INTC_START, },	{ .name = "ar", .irq = 83 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_dma_info am33xx_mcasp1_edma_reqs[] = {	{ .name = "tx", .dma_req = 10, },	{ .name = "rx", .dma_req = 11, },	{ .dma_req = -1 }};static struct omap_hwmod am33xx_mcasp1_hwmod = {	.name		= "mcasp1",	.class		= &am33xx_mcasp_hwmod_class,	.clkdm_name	= "l3s_clkdm",	.mpu_irqs	= am33xx_mcasp1_irqs,	.sdma_reqs	= am33xx_mcasp1_edma_reqs,	.main_clk	= "mcasp1_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_MCASP1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* 'mmc' class */static struct omap_hwmod_class_sysconfig am33xx_mmc_sysc = {	.rev_offs	= 0x1fc,	.sysc_offs	= 0x10,	.syss_offs	= 0x14,	.sysc_flags	= (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |			  SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |			  SYSC_HAS_AUTOIDLE | SYSS_HAS_RESET_STATUS),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),	.sysc_fields	= &omap_hwmod_sysc_type1,};static struct omap_hwmod_class am33xx_mmc_hwmod_class = {	.name		= "mmc",	.sysc		= &am33xx_mmc_sysc,};/* mmc0 */static struct omap_hwmod_irq_info am33xx_mmc0_irqs[] = {	{ .irq = 64 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_dma_info am33xx_mmc0_edma_reqs[] = {	{ .name = "tx", .dma_req = 24, },	{ .name = "rx", .dma_req = 25, },	{ .dma_req = -1 }};static struct omap_mmc_dev_attr am33xx_mmc0_dev_attr = {	.flags		= OMAP_HSMMC_SUPPORTS_DUAL_VOLT,};static struct omap_hwmod am33xx_mmc0_hwmod = {	.name		= "mmc1",	.class		= &am33xx_mmc_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_mmc0_irqs,	.sdma_reqs	= am33xx_mmc0_edma_reqs,	.main_clk	= "mmc_clk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_MMC0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.dev_attr	= &am33xx_mmc0_dev_attr,};/* mmc1 */static struct omap_hwmod_irq_info am33xx_mmc1_irqs[] = {	{ .irq = 28 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_dma_info am33xx_mmc1_edma_reqs[] = {	{ .name = "tx", .dma_req = 2, },	{ .name = "rx", .dma_req = 3, },	{ .dma_req = -1 }};static struct omap_mmc_dev_attr am33xx_mmc1_dev_attr = {	.flags		= OMAP_HSMMC_SUPPORTS_DUAL_VOLT,};static struct omap_hwmod am33xx_mmc1_hwmod = {	.name		= "mmc2",	.class		= &am33xx_mmc_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_mmc1_irqs,	.sdma_reqs	= am33xx_mmc1_edma_reqs,	.main_clk	= "mmc_clk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_MMC1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.dev_attr	= &am33xx_mmc1_dev_attr,};/* mmc2 */static struct omap_hwmod_irq_info am33xx_mmc2_irqs[] = {	{ .irq = 29 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_dma_info am33xx_mmc2_edma_reqs[] = {	{ .name = "tx", .dma_req = 64, },	{ .name = "rx", .dma_req = 65, },	{ .dma_req = -1 }};static struct omap_mmc_dev_attr am33xx_mmc2_dev_attr = {	.flags		= OMAP_HSMMC_SUPPORTS_DUAL_VOLT,};static struct omap_hwmod am33xx_mmc2_hwmod = {	.name		= "mmc3",	.class		= &am33xx_mmc_hwmod_class,	.clkdm_name	= "l3s_clkdm",	.mpu_irqs	= am33xx_mmc2_irqs,	.sdma_reqs	= am33xx_mmc2_edma_reqs,	.main_clk	= "mmc_clk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_MMC2_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.dev_attr	= &am33xx_mmc2_dev_attr,};/* * 'rtc' class * rtc subsystem */static struct omap_hwmod_class_sysconfig am33xx_rtc_sysc = {	.rev_offs	= 0x0074,	.sysc_offs	= 0x0078,	.sysc_flags	= SYSC_HAS_SIDLEMODE,	.idlemodes	= (SIDLE_FORCE | SIDLE_NO |			  SIDLE_SMART | SIDLE_SMART_WKUP),	.sysc_fields	= &omap_hwmod_sysc_type3,};static struct omap_hwmod_class am33xx_rtc_hwmod_class = {	.name		= "rtc",	.sysc		= &am33xx_rtc_sysc,};static struct omap_hwmod_irq_info am33xx_rtc_irqs[] = {	{ .name = "rtcint", .irq = 75 + OMAP_INTC_START, },	{ .name = "rtcalarmint", .irq = 76 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_rtc_hwmod = {	.name		= "rtc",	.class		= &am33xx_rtc_hwmod_class,	.clkdm_name	= "l4_rtc_clkdm",	.mpu_irqs	= am33xx_rtc_irqs,	.main_clk	= "clk_32768_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_RTC_RTC_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* 'spi' class */static struct omap_hwmod_class_sysconfig am33xx_mcspi_sysc = {	.rev_offs	= 0x0000,	.sysc_offs	= 0x0110,	.syss_offs	= 0x0114,	.sysc_flags	= (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |			  SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE |			  SYSS_HAS_RESET_STATUS),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),	.sysc_fields	= &omap_hwmod_sysc_type1,};static struct omap_hwmod_class am33xx_spi_hwmod_class = {	.name		= "mcspi",	.sysc		= &am33xx_mcspi_sysc,	.rev		= OMAP4_MCSPI_REV,};/* spi0 */static struct omap_hwmod_irq_info am33xx_spi0_irqs[] = {	{ .irq = 65 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_dma_info am33xx_mcspi0_edma_reqs[] = {	{ .name = "rx0", .dma_req = 17 },	{ .name = "tx0", .dma_req = 16 },	{ .name = "rx1", .dma_req = 19 },	{ .name = "tx1", .dma_req = 18 },	{ .dma_req = -1 }};static struct omap2_mcspi_dev_attr mcspi_attrib = {	.num_chipselect	= 2,};static struct omap_hwmod am33xx_spi0_hwmod = {	.name		= "spi0",	.class		= &am33xx_spi_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_spi0_irqs,	.sdma_reqs	= am33xx_mcspi0_edma_reqs,	.main_clk	= "dpll_per_m2_div4_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_SPI0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.dev_attr	= &mcspi_attrib,};/* spi1 */static struct omap_hwmod_irq_info am33xx_spi1_irqs[] = {	{ .irq = 125 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod_dma_info am33xx_mcspi1_edma_reqs[] = {	{ .name = "rx0", .dma_req = 43 },	{ .name = "tx0", .dma_req = 42 },	{ .name = "rx1", .dma_req = 45 },	{ .name = "tx1", .dma_req = 44 },	{ .dma_req = -1 }};static struct omap_hwmod am33xx_spi1_hwmod = {	.name		= "spi1",	.class		= &am33xx_spi_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_spi1_irqs,	.sdma_reqs	= am33xx_mcspi1_edma_reqs,	.main_clk	= "dpll_per_m2_div4_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_SPI1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},	.dev_attr	= &mcspi_attrib,};/* * 'spinlock' class * spinlock provides hardware assistance for synchronizing the * processes running on multiple processors */static struct omap_hwmod_class am33xx_spinlock_hwmod_class = {	.name		= "spinlock",};static struct omap_hwmod am33xx_spinlock_hwmod = {	.name		= "spinlock",	.class		= &am33xx_spinlock_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.main_clk	= "l4ls_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_SPINLOCK_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* 'timer 2-7' class */static struct omap_hwmod_class_sysconfig am33xx_timer_sysc = {	.rev_offs	= 0x0000,	.sysc_offs	= 0x0010,	.syss_offs	= 0x0014,	.sysc_flags	= (SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |			  SIDLE_SMART_WKUP),	.sysc_fields	= &omap_hwmod_sysc_type2,};static struct omap_hwmod_class am33xx_timer_hwmod_class = {	.name		= "timer",	.sysc		= &am33xx_timer_sysc,};/* timer1 1ms */static struct omap_hwmod_class_sysconfig am33xx_timer1ms_sysc = {	.rev_offs	= 0x0000,	.sysc_offs	= 0x0010,	.syss_offs	= 0x0014,	.sysc_flags	= (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |			SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE |			SYSS_HAS_RESET_STATUS),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),	.sysc_fields	= &omap_hwmod_sysc_type1,};static struct omap_hwmod_class am33xx_timer1ms_hwmod_class = {	.name		= "timer",	.sysc		= &am33xx_timer1ms_sysc,};static struct omap_hwmod_irq_info am33xx_timer1_irqs[] = {	{ .irq = 67 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_timer1_hwmod = {	.name		= "timer1",	.class		= &am33xx_timer1ms_hwmod_class,	.clkdm_name	= "l4_wkup_clkdm",	.mpu_irqs	= am33xx_timer1_irqs,	.main_clk	= "timer1_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_TIMER1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};static struct omap_hwmod_irq_info am33xx_timer2_irqs[] = {	{ .irq = 68 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_timer2_hwmod = {	.name		= "timer2",	.class		= &am33xx_timer_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_timer2_irqs,	.main_clk	= "timer2_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_TIMER2_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};static struct omap_hwmod_irq_info am33xx_timer3_irqs[] = {	{ .irq = 69 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_timer3_hwmod = {	.name		= "timer3",	.class		= &am33xx_timer_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_timer3_irqs,	.main_clk	= "timer3_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_TIMER3_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};static struct omap_hwmod_irq_info am33xx_timer4_irqs[] = {	{ .irq = 92 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_timer4_hwmod = {	.name		= "timer4",	.class		= &am33xx_timer_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_timer4_irqs,	.main_clk	= "timer4_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_TIMER4_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};static struct omap_hwmod_irq_info am33xx_timer5_irqs[] = {	{ .irq = 93 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_timer5_hwmod = {	.name		= "timer5",	.class		= &am33xx_timer_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_timer5_irqs,	.main_clk	= "timer5_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_TIMER5_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};static struct omap_hwmod_irq_info am33xx_timer6_irqs[] = {	{ .irq = 94 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_timer6_hwmod = {	.name		= "timer6",	.class		= &am33xx_timer_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_timer6_irqs,	.main_clk	= "timer6_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_TIMER6_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};static struct omap_hwmod_irq_info am33xx_timer7_irqs[] = {	{ .irq = 95 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_timer7_hwmod = {	.name		= "timer7",	.class		= &am33xx_timer_hwmod_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_timer7_irqs,	.main_clk	= "timer7_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_TIMER7_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* tpcc */static struct omap_hwmod_class am33xx_tpcc_hwmod_class = {	.name		= "tpcc",};static struct omap_hwmod_irq_info am33xx_tpcc_irqs[] = {	{ .name	= "edma0", .irq = 12 + OMAP_INTC_START, },	{ .name = "edma0_mperr", .irq = 13 + OMAP_INTC_START, },	{ .name	= "edma0_err", .irq = 14 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_tpcc_hwmod = {	.name		= "tpcc",	.class		= &am33xx_tpcc_hwmod_class,	.clkdm_name	= "l3_clkdm",	.mpu_irqs	= am33xx_tpcc_irqs,	.main_clk	= "l3_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_TPCC_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};static struct omap_hwmod_class_sysconfig am33xx_tptc_sysc = {	.rev_offs	= 0x0,	.sysc_offs	= 0x10,	.sysc_flags	= (SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET |			  SYSC_HAS_MIDLEMODE),	.idlemodes	= (SIDLE_FORCE | SIDLE_SMART | MSTANDBY_FORCE),	.sysc_fields	= &omap_hwmod_sysc_type2,};/* 'tptc' class */static struct omap_hwmod_class am33xx_tptc_hwmod_class = {	.name		= "tptc",	.sysc		= &am33xx_tptc_sysc,};/* tptc0 */static struct omap_hwmod_irq_info am33xx_tptc0_irqs[] = {	{ .irq = 112 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_tptc0_hwmod = {	.name		= "tptc0",	.class		= &am33xx_tptc_hwmod_class,	.clkdm_name	= "l3_clkdm",	.mpu_irqs	= am33xx_tptc0_irqs,	.main_clk	= "l3_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_TPTC0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* tptc1 */static struct omap_hwmod_irq_info am33xx_tptc1_irqs[] = {	{ .irq = 113 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_tptc1_hwmod = {	.name		= "tptc1",	.class		= &am33xx_tptc_hwmod_class,	.clkdm_name	= "l3_clkdm",	.mpu_irqs	= am33xx_tptc1_irqs,	.flags		= (HWMOD_SWSUP_SIDLE | HWMOD_SWSUP_MSTANDBY),	.main_clk	= "l3_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_TPTC1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* tptc2 */static struct omap_hwmod_irq_info am33xx_tptc2_irqs[] = {	{ .irq = 114 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_tptc2_hwmod = {	.name		= "tptc2",	.class		= &am33xx_tptc_hwmod_class,	.clkdm_name	= "l3_clkdm",	.mpu_irqs	= am33xx_tptc2_irqs,	.flags		= (HWMOD_SWSUP_SIDLE | HWMOD_SWSUP_MSTANDBY),	.main_clk	= "l3_gclk",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_TPTC2_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* 'uart' class */static struct omap_hwmod_class_sysconfig uart_sysc = {	.rev_offs	= 0x50,	.sysc_offs	= 0x54,	.syss_offs	= 0x58,	.sysc_flags	= (SYSC_HAS_SIDLEMODE | SYSC_HAS_ENAWAKEUP |			  SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |			  SIDLE_SMART_WKUP),	.sysc_fields	= &omap_hwmod_sysc_type1,};static struct omap_hwmod_class uart_class = {	.name		= "uart",	.sysc		= &uart_sysc,};/* uart1 */static struct omap_hwmod_dma_info uart1_edma_reqs[] = {	{ .name = "tx",	.dma_req = 26, },	{ .name = "rx",	.dma_req = 27, },	{ .dma_req = -1 }};static struct omap_hwmod_irq_info am33xx_uart1_irqs[] = {	{ .irq = 72 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_uart1_hwmod = {	.name		= "uart1",	.class		= &uart_class,	.clkdm_name	= "l4_wkup_clkdm",	.mpu_irqs	= am33xx_uart1_irqs,	.sdma_reqs	= uart1_edma_reqs,	.main_clk	= "dpll_per_m2_div4_wkupdm_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_UART0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};static struct omap_hwmod_irq_info am33xx_uart2_irqs[] = {	{ .irq = 73 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_uart2_hwmod = {	.name		= "uart2",	.class		= &uart_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_uart2_irqs,	.sdma_reqs	= uart1_edma_reqs,	.main_clk	= "dpll_per_m2_div4_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_UART1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* uart3 */static struct omap_hwmod_dma_info uart3_edma_reqs[] = {	{ .name = "tx",	.dma_req = 30, },	{ .name = "rx",	.dma_req = 31, },	{ .dma_req = -1 }};static struct omap_hwmod_irq_info am33xx_uart3_irqs[] = {	{ .irq = 74 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_uart3_hwmod = {	.name		= "uart3",	.class		= &uart_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_uart3_irqs,	.sdma_reqs	= uart3_edma_reqs,	.main_clk	= "dpll_per_m2_div4_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_UART2_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};static struct omap_hwmod_irq_info am33xx_uart4_irqs[] = {	{ .irq = 44 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_uart4_hwmod = {	.name		= "uart4",	.class		= &uart_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_uart4_irqs,	.sdma_reqs	= uart1_edma_reqs,	.main_clk	= "dpll_per_m2_div4_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_UART3_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};static struct omap_hwmod_irq_info am33xx_uart5_irqs[] = {	{ .irq = 45 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_uart5_hwmod = {	.name		= "uart5",	.class		= &uart_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_uart5_irqs,	.sdma_reqs	= uart1_edma_reqs,	.main_clk	= "dpll_per_m2_div4_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_UART4_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};static struct omap_hwmod_irq_info am33xx_uart6_irqs[] = {	{ .irq = 46 + OMAP_INTC_START, },	{ .irq = -1 },};static struct omap_hwmod am33xx_uart6_hwmod = {	.name		= "uart6",	.class		= &uart_class,	.clkdm_name	= "l4ls_clkdm",	.mpu_irqs	= am33xx_uart6_irqs,	.sdma_reqs	= uart1_edma_reqs,	.main_clk	= "dpll_per_m2_div4_ck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_UART5_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* 'wd_timer' class */static struct omap_hwmod_class am33xx_wd_timer_hwmod_class = {	.name		= "wd_timer",};/* * XXX: device.c file uses hardcoded name for watchdog timer * driver "wd_timer2, so we are also using same name as of now... */static struct omap_hwmod am33xx_wd_timer1_hwmod = {	.name		= "wd_timer2",	.class		= &am33xx_wd_timer_hwmod_class,	.clkdm_name	= "l4_wkup_clkdm",	.main_clk	= "wdt1_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_WKUP_WDT1_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * 'usb_otg' class * high-speed on-the-go universal serial bus (usb_otg) controller */static struct omap_hwmod_class_sysconfig am33xx_usbhsotg_sysc = {	.rev_offs	= 0x0,	.sysc_offs	= 0x10,	.sysc_flags	= (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE),	.idlemodes	= (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |			  MSTANDBY_FORCE | MSTANDBY_NO | MSTANDBY_SMART),	.sysc_fields	= &omap_hwmod_sysc_type2,};static struct omap_hwmod_class am33xx_usbotg_class = {	.name		= "usbotg",	.sysc		= &am33xx_usbhsotg_sysc,};static struct omap_hwmod_irq_info am33xx_usbss_mpu_irqs[] = {	{ .name = "usbss-irq", .irq = 17 + OMAP_INTC_START, },	{ .name = "musb0-irq", .irq = 18 + OMAP_INTC_START, },	{ .name = "musb1-irq", .irq = 19 + OMAP_INTC_START, },	{ .irq = -1, },};static struct omap_hwmod am33xx_usbss_hwmod = {	.name		= "usb_otg_hs",	.class		= &am33xx_usbotg_class,	.clkdm_name	= "l3s_clkdm",	.mpu_irqs	= am33xx_usbss_mpu_irqs,	.flags		= HWMOD_SWSUP_SIDLE | HWMOD_SWSUP_MSTANDBY,	.main_clk	= "usbotg_fck",	.prcm		= {		.omap4	= {			.clkctrl_offs	= AM33XX_CM_PER_USB0_CLKCTRL_OFFSET,			.modulemode	= MODULEMODE_SWCTRL,		},	},};/* * Interfaces *//* l4 fw -> emif fw */static struct omap_hwmod_ocp_if am33xx_l4_fw__emif_fw = {	.master		= &am33xx_l4_fw_hwmod,	.slave		= &am33xx_emif_fw_hwmod,	.clk		= "l4fw_gclk",	.user		= OCP_USER_MPU,};static struct omap_hwmod_addr_space am33xx_emif_addrs[] = {	{		.pa_start	= 0x4c000000,		.pa_end		= 0x4c000fff,		.flags		= ADDR_TYPE_RT	},	{ }};/* l3 main -> emif */static struct omap_hwmod_ocp_if am33xx_l3_main__emif = {	.master		= &am33xx_l3_main_hwmod,	.slave		= &am33xx_emif_hwmod,	.clk		= "dpll_core_m4_ck",	.addr		= am33xx_emif_addrs,	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* mpu -> l3 main */static struct omap_hwmod_ocp_if am33xx_mpu__l3_main = {	.master		= &am33xx_mpu_hwmod,	.slave		= &am33xx_l3_main_hwmod,	.clk		= "dpll_mpu_m2_ck",	.user		= OCP_USER_MPU,};/* l3 main -> l4 hs */static struct omap_hwmod_ocp_if am33xx_l3_main__l4_hs = {	.master		= &am33xx_l3_main_hwmod,	.slave		= &am33xx_l4_hs_hwmod,	.clk		= "l3s_gclk",	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* l3 main -> l3 s */static struct omap_hwmod_ocp_if am33xx_l3_main__l3_s = {	.master		= &am33xx_l3_main_hwmod,	.slave		= &am33xx_l3_s_hwmod,	.clk		= "l3s_gclk",	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* l3 s -> l4 per/ls */static struct omap_hwmod_ocp_if am33xx_l3_s__l4_ls = {	.master		= &am33xx_l3_s_hwmod,	.slave		= &am33xx_l4_ls_hwmod,	.clk		= "l3s_gclk",	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* l3 s -> l4 wkup */static struct omap_hwmod_ocp_if am33xx_l3_s__l4_wkup = {	.master		= &am33xx_l3_s_hwmod,	.slave		= &am33xx_l4_wkup_hwmod,	.clk		= "l3s_gclk",	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* l3 s -> l4 fw */static struct omap_hwmod_ocp_if am33xx_l3_s__l4_fw = {	.master		= &am33xx_l3_s_hwmod,	.slave		= &am33xx_l4_fw_hwmod,	.clk		= "l3s_gclk",	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* l3 main -> l3 instr */static struct omap_hwmod_ocp_if am33xx_l3_main__l3_instr = {	.master		= &am33xx_l3_main_hwmod,	.slave		= &am33xx_l3_instr_hwmod,	.clk		= "l3s_gclk",	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* mpu -> prcm */static struct omap_hwmod_ocp_if am33xx_mpu__prcm = {	.master		= &am33xx_mpu_hwmod,	.slave		= &am33xx_prcm_hwmod,	.clk		= "dpll_mpu_m2_ck",	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* l3 s -> l3 main*/static struct omap_hwmod_ocp_if am33xx_l3_s__l3_main = {	.master		= &am33xx_l3_s_hwmod,	.slave		= &am33xx_l3_main_hwmod,	.clk		= "l3s_gclk",	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* pru-icss -> l3 main */static struct omap_hwmod_ocp_if am33xx_pruss__l3_main = {	.master		= &am33xx_pruss_hwmod,	.slave		= &am33xx_l3_main_hwmod,	.clk		= "l3_gclk",	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* wkup m3 -> l4 wkup */static struct omap_hwmod_ocp_if am33xx_wkup_m3__l4_wkup = {	.master		= &am33xx_wkup_m3_hwmod,	.slave		= &am33xx_l4_wkup_hwmod,	.clk		= "dpll_core_m4_div2_ck",	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* gfx -> l3 main */static struct omap_hwmod_ocp_if am33xx_gfx__l3_main = {	.master		= &am33xx_gfx_hwmod,	.slave		= &am33xx_l3_main_hwmod,	.clk		= "dpll_core_m4_ck",	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* l4 wkup -> wkup m3 */static struct omap_hwmod_addr_space am33xx_wkup_m3_addrs[] = {	{		.name		= "umem",		.pa_start	= 0x44d00000,		.pa_end		= 0x44d00000 + SZ_16K - 1,		.flags		= ADDR_TYPE_RT	},	{		.name		= "dmem",		.pa_start	= 0x44d80000,		.pa_end		= 0x44d80000 + SZ_8K - 1,		.flags		= ADDR_TYPE_RT	},	{ }};static struct omap_hwmod_ocp_if am33xx_l4_wkup__wkup_m3 = {	.master		= &am33xx_l4_wkup_hwmod,	.slave		= &am33xx_wkup_m3_hwmod,	.clk		= "dpll_core_m4_div2_ck",	.addr		= am33xx_wkup_m3_addrs,	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* l4 hs -> pru-icss */static struct omap_hwmod_addr_space am33xx_pruss_addrs[] = {	{		.pa_start	= 0x4a300000,		.pa_end		= 0x4a300000 + SZ_512K - 1,		.flags		= ADDR_TYPE_RT	},	{ }};static struct omap_hwmod_ocp_if am33xx_l4_hs__pruss = {	.master		= &am33xx_l4_hs_hwmod,	.slave		= &am33xx_pruss_hwmod,	.clk		= "dpll_core_m4_ck",	.addr		= am33xx_pruss_addrs,	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* l3 main -> gfx */static struct omap_hwmod_addr_space am33xx_gfx_addrs[] = {	{		.pa_start	= 0x56000000,		.pa_end		= 0x56000000 + SZ_16M - 1,		.flags		= ADDR_TYPE_RT	},	{ }};static struct omap_hwmod_ocp_if am33xx_l3_main__gfx = {	.master		= &am33xx_l3_main_hwmod,	.slave		= &am33xx_gfx_hwmod,	.clk		= "dpll_core_m4_ck",	.addr		= am33xx_gfx_addrs,	.user		= OCP_USER_MPU | OCP_USER_SDMA,};/* l4 wkup -> smartreflex0 */static struct omap_hwmod_addr_space am33xx_smartreflex0_addrs[] = {	{		.pa_start	= 0x44e37000,		.pa_end		= 0x44e37000 + SZ_4K - 1,		.flags		= ADDR_TYPE_RT	},	{ }};static struct omap_hwmod_ocp_if am33xx_l4_wkup__smartreflex0 = {	.master		= &am33xx_l4_wkup_hwmod,	.slave		= &am33xx_smartreflex0_hwmod,	.clk		= "dpll_core_m4_div2_ck",	.addr		= am33xx_smartreflex0_addrs,	.user		= OCP_USER_MPU,};/* l4 wkup -> smartreflex1 */static struct omap_hwmod_addr_space am33xx_smartreflex1_addrs[] = {	{		.pa_start	= 0x44e39000,		.pa_end		= 0x44e39000 + SZ_4K - 1,		.flags		= ADDR_TYPE_RT	},	{ }};static struct omap_hwmod_ocp_if am33xx_l4_wkup__smartreflex1 = {	.master		= &am33xx_l4_wkup_hwmod,	.slave		= &am33xx_smartreflex1_hwmod,	.clk		= "dpll_core_m4_div2_ck",	.addr		= am33xx_smartreflex1_addrs,
 |