From mboxrd@z Thu Jan 1 00:00:00 1970 From: tony@atomide.com (Tony Lindgren) Date: Tue, 24 Apr 2012 09:35:47 -0700 Subject: [PATCH 05/19] ARM: OMAP4: PM: Add SAR backup support towards device OFF In-Reply-To: <1334914432-26456-6-git-send-email-t-kristo@ti.com> References: <1334914432-26456-1-git-send-email-t-kristo@ti.com> <1334914432-26456-6-git-send-email-t-kristo@ti.com> Message-ID: <20120424163547.GL3739@atomide.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org * Tero Kristo [120420 02:39]: > + > +static int omap4_sar_not_accessible(void) > +{ > + u32 usbhost_state, usbtll_state; > + > + /* > + * Make sure that USB host and TLL modules are not > + * enabled before attempting to save the context > + * registers, otherwise this will trigger an exception. > + */ > + usbhost_state = omap4_cminst_read_inst_reg(OMAP4430_CM2_PARTITION, > + OMAP4430_CM2_L3INIT_INST, > + OMAP4_CM_L3INIT_USB_HOST_CLKCTRL_OFFSET) > + & (OMAP4430_STBYST_MASK | OMAP4430_IDLEST_MASK); > + > + usbtll_state = omap4_cminst_read_inst_reg(OMAP4430_CM2_PARTITION, > + OMAP4430_CM2_L3INIT_INST, > + OMAP4_CM_L3INIT_USB_TLL_CLKCTRL_OFFSET) > + & OMAP4430_IDLEST_MASK; Formatting here looks bad, maybe just do it in separate steps: usbhost_state = omap4_cminst... usbhost_state &= OMAP4430_STBYST_MASK | OMAP4430_IDLEST_MASK; ... > + /* > + * Not supported on ES1.0 silicon > + */ > + if (omap_rev() == OMAP4430_REV_ES1_0) { > + WARN_ONCE(1, "omap4: SAR backup not supported on ES1.0 ..\n"); > + return -ENODEV; > + } Everytime there's SoC/hardware revision detection in a non __init function, something is most likely wrong. > +void omap4_sar_overwrite(void) > +{ > + u32 val = 0; > + u32 offset = 0; > + > + if (cpu_is_omap446x()) > + offset = 0x04; Here too. > +static int __init omap4_sar_ram_init(void) > +{ > + /* > + * To avoid code running on other OMAPs in > + * multi-omap builds > + */ > + if (!cpu_is_omap44xx()) > + return -ENODEV; You should configure things here instead by setting function pointers or variables. Regards, Tony