[ARM] 4238/1: S3C24XX: docs: update suspend and resume

Remove some of the explicit use of S3C2410 where
it is generic to all the S3C24XX series. Add more
info on the CRC code, and add an example of using
IRQ_EINT0 to resume from suspend

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Ben Dooks and committed by Russell King 540988eb 1b7b5698

+33 -2
+33 -2
Documentation/arm/Samsung-S3C24XX/Suspend.txt
··· 5 5 Introduction 6 6 ------------ 7 7 8 - The S3C2410 supports a low-power suspend mode, where the SDRAM is kept 8 + The S3C24XX supports a low-power suspend mode, where the SDRAM is kept 9 9 in Self-Refresh mode, and all but the essential peripheral blocks are 10 10 powered down. For more information on how this works, please look 11 - at the S3C2410 datasheets from Samsung. 11 + at the relevant CPU datasheet from Samsung. 12 12 13 13 14 14 Requirements ··· 56 56 Note, the original method of adding an late_initcall() is wrong, 57 57 and will end up initialising all compiled machines' pm init! 58 58 59 + The following is an example of code used for testing wakeup from 60 + an falling edge on IRQ_EINT0: 61 + 62 + 63 + static irqreturn_t button_irq(int irq, void *pw) 64 + { 65 + return IRQ_HANDLED; 66 + } 67 + 68 + statuc void __init machine_init(void) 69 + { 70 + ... 71 + 72 + request_irq(IRQ_EINT0, button_irq, IRQF_TRIGGER_FALLING, 73 + "button-irq-eint0", NULL); 74 + 75 + enable_irq_wake(IRQ_EINT0); 76 + 77 + s3c2410_pm_init(); 78 + } 79 + 59 80 60 81 Debugging 61 82 --------- ··· 90 69 2) Whilst the pm code itself will attempt to re-enable the UART clocks, 91 70 care should be taken that any external clock sources that the UARTs 92 71 rely on are still enabled at that point. 72 + 73 + 3) If any debugging is placed in the resume path, then it must have the 74 + relevant clocks and peripherals setup before use (ie, bootloader). 75 + 76 + For example, if you transmit a character from the UART, the baud 77 + rate and uart controls must be setup beforehand. 93 78 94 79 95 80 Configuration ··· 115 88 116 89 Allows the entire memory to be checksummed before and after the 117 90 suspend to see if there has been any corruption of the contents. 91 + 92 + Note, the time to calculate the CRC is dependant on the CPU speed 93 + and the size of memory. For an 64Mbyte RAM area on an 200MHz 94 + S3C2410, this can take approximately 4 seconds to complete. 118 95 119 96 This support requires the CRC32 function to be enabled. 120 97