1508a58faSSricharan /* 2508a58faSSricharan * (C) Copyright 2010 3508a58faSSricharan * Texas Instruments, <www.ti.com> 4508a58faSSricharan * Syed Mohammed Khasim <khasim@ti.com> 5508a58faSSricharan * 6508a58faSSricharan * See file CREDITS for list of people who contributed to this 7508a58faSSricharan * project. 8508a58faSSricharan * 9508a58faSSricharan * This program is free software; you can redistribute it and/or 10508a58faSSricharan * modify it under the terms of the GNU General Public License as 11508a58faSSricharan * published by the Free Software Foundation's version 2 of 12508a58faSSricharan * the License. 13508a58faSSricharan * 14508a58faSSricharan * This program is distributed in the hope that it will be useful, 15508a58faSSricharan * but WITHOUT ANY WARRANTY; without even the implied warranty of 16508a58faSSricharan * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17508a58faSSricharan * GNU General Public License for more details. 18508a58faSSricharan * 19508a58faSSricharan * You should have received a copy of the GNU General Public License 20508a58faSSricharan * along with this program; if not, write to the Free Software 21508a58faSSricharan * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 22508a58faSSricharan * MA 02111-1307 USA 23508a58faSSricharan */ 24508a58faSSricharan 25508a58faSSricharan #ifndef MMC_HOST_DEF_H 26508a58faSSricharan #define MMC_HOST_DEF_H 27508a58faSSricharan 28*fa3a6928SNikita Kiryanov #include <asm/omap_mmc.h> 29*fa3a6928SNikita Kiryanov 30508a58faSSricharan /* 31508a58faSSricharan * OMAP HSMMC register definitions 32508a58faSSricharan */ 33508a58faSSricharan 34508a58faSSricharan #define OMAP_HSMMC1_BASE 0x4809C100 35508a58faSSricharan #define OMAP_HSMMC2_BASE 0x480B4100 36508a58faSSricharan #define OMAP_HSMMC3_BASE 0x480AD100 37508a58faSSricharan 38508a58faSSricharan #endif /* MMC_HOST_DEF_H */ 39