blob: 4665bfcd2ce973fcdb35d64a3c6375df110a56d2 [file] [log] [blame]
Ladislav Michl561b0362010-02-15 10:03:32 -08001/*
2 * Flash support for OMAP1
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/mtd/mtd.h>
10#include <linux/mtd/map.h>
11
12#include <plat/io.h>
13#include <plat/tc.h>
Aaro Koskinen706afdd2010-11-18 19:59:46 +020014#include <plat/flash.h>
Ladislav Michl561b0362010-02-15 10:03:32 -080015
Marc Zyngier667f3902011-05-18 10:51:55 +010016void omap1_set_vpp(struct platform_device *pdev, int enable)
Ladislav Michl561b0362010-02-15 10:03:32 -080017{
Ladislav Michl561b0362010-02-15 10:03:32 -080018 u32 l;
19
Paul Parsons876fe762012-03-07 14:12:08 +000020 l = omap_readl(EMIFS_CONFIG);
21 if (enable)
22 l |= OMAP_EMIFS_CONFIG_WP;
23 else
24 l &= ~OMAP_EMIFS_CONFIG_WP;
25 omap_writel(l, EMIFS_CONFIG);
Ladislav Michl561b0362010-02-15 10:03:32 -080026}