sleep.S (d4d9781d1dd04ff134e3d43383dfa9991f7c54c6) | sleep.S (1fdb24e969110fafea36d3b393bea438f702c87f) |
---|---|
1/* 2 * (C) Copyright 2009, Texas Instruments, Inc. http://www.ti.com/ 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * version 2 as published by the Free Software Foundation. 7 * 8 * This program is distributed in the hope that it will be useful, --- 8 unchanged lines hidden (view full) --- 17 */ 18 19/* replicated define because linux/bitops.h cannot be included in assembly */ 20#define BIT(nr) (1 << (nr)) 21 22#include <linux/linkage.h> 23#include <asm/assembler.h> 24#include <mach/psc.h> | 1/* 2 * (C) Copyright 2009, Texas Instruments, Inc. http://www.ti.com/ 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * version 2 as published by the Free Software Foundation. 7 * 8 * This program is distributed in the hope that it will be useful, --- 8 unchanged lines hidden (view full) --- 17 */ 18 19/* replicated define because linux/bitops.h cannot be included in assembly */ 20#define BIT(nr) (1 << (nr)) 21 22#include <linux/linkage.h> 23#include <asm/assembler.h> 24#include <mach/psc.h> |
25#include <mach/memory.h> | 25#include <mach/ddr2.h> |
26 27#include "clock.h" 28 29/* Arbitrary, hardware currently does not update PHYRDY correctly */ 30#define PHYRDY_CYCLES 0x1000 31 32/* Assume 25 MHz speed for the cycle conversions since PLLs are bypassed */ 33#define PLL_BYPASS_CYCLES (PLL_BYPASS_TIME * 25) --- 195 unchanged lines hidden --- | 26 27#include "clock.h" 28 29/* Arbitrary, hardware currently does not update PHYRDY correctly */ 30#define PHYRDY_CYCLES 0x1000 31 32/* Assume 25 MHz speed for the cycle conversions since PLLs are bypassed */ 33#define PLL_BYPASS_CYCLES (PLL_BYPASS_TIME * 25) --- 195 unchanged lines hidden --- |