| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2012-07-26 17:47:55 +03:00
										 |  |  |  * Copyright 2009-2010, 2012 Freescale Semiconductor, Inc. | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  |  * | 
					
						
							|  |  |  |  * QorIQ (P1/P2) L2 controller init for Cache-SRAM instantiation | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Author: Vivek Mahajan <vivek.mahajan@freescale.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute  it and/or modify it | 
					
						
							|  |  |  |  * under  the terms of  the GNU General  Public License as published by the | 
					
						
							|  |  |  |  * Free Software Foundation;  either version 2 of the  License, or (at your | 
					
						
							|  |  |  |  * option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							| 
									
										
										
										
											2012-02-01 19:05:15 +02:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | #include <linux/of_platform.h>
 | 
					
						
							|  |  |  | #include <asm/io.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "fsl_85xx_cache_ctlr.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char *sram_size; | 
					
						
							|  |  |  | static char *sram_offset; | 
					
						
							|  |  |  | struct mpc85xx_l2ctlr __iomem *l2ctlr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-26 17:47:55 +03:00
										 |  |  | static int get_cache_sram_params(struct sram_parameters *sram_params) | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-07-26 17:47:55 +03:00
										 |  |  | 	unsigned long long addr; | 
					
						
							|  |  |  | 	unsigned int size; | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-26 17:47:55 +03:00
										 |  |  | 	if (!sram_size || (kstrtouint(sram_size, 0, &size) < 0)) | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-26 17:47:55 +03:00
										 |  |  | 	if (!sram_offset || (kstrtoull(sram_offset, 0, &addr) < 0)) | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-26 17:47:55 +03:00
										 |  |  | 	sram_params->sram_offset = addr; | 
					
						
							|  |  |  | 	sram_params->sram_size = size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init get_size_from_cmdline(char *str) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!str) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sram_size = str; | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init get_offset_from_cmdline(char *str) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!str) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sram_offset = str; | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __setup("cache-sram-size=", get_size_from_cmdline); | 
					
						
							|  |  |  | __setup("cache-sram-offset=", get_offset_from_cmdline); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-21 14:04:10 -08:00
										 |  |  | static int mpc85xx_l2ctlr_of_probe(struct platform_device *dev) | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | { | 
					
						
							|  |  |  | 	long rval; | 
					
						
							|  |  |  | 	unsigned int rem; | 
					
						
							|  |  |  | 	unsigned char ways; | 
					
						
							|  |  |  | 	const unsigned int *prop; | 
					
						
							|  |  |  | 	unsigned int l2cache_size; | 
					
						
							|  |  |  | 	struct sram_parameters sram_params; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!dev->dev.of_node) { | 
					
						
							|  |  |  | 		dev_err(&dev->dev, "Device's OF-node is NULL\n"); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	prop = of_get_property(dev->dev.of_node, "cache-size", NULL); | 
					
						
							|  |  |  | 	if (!prop) { | 
					
						
							|  |  |  | 		dev_err(&dev->dev, "Missing L2 cache-size\n"); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	l2cache_size = *prop; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-26 17:47:55 +03:00
										 |  |  | 	if (get_cache_sram_params(&sram_params)) { | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | 		dev_err(&dev->dev, | 
					
						
							| 
									
										
										
										
											2012-07-26 17:47:55 +03:00
										 |  |  | 			"Entire L2 as cache, provide valid sram offset and size\n"); | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rem = l2cache_size % sram_params.sram_size; | 
					
						
							|  |  |  | 	ways = LOCK_WAYS_FULL * sram_params.sram_size / l2cache_size; | 
					
						
							|  |  |  | 	if (rem || (ways & (ways - 1))) { | 
					
						
							|  |  |  | 		dev_err(&dev->dev, "Illegal cache-sram-size in command line\n"); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	l2ctlr = of_iomap(dev->dev.of_node, 0); | 
					
						
							|  |  |  | 	if (!l2ctlr) { | 
					
						
							|  |  |  | 		dev_err(&dev->dev, "Can't map L2 controller\n"); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Write bits[0-17] to srbar0 | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	out_be32(&l2ctlr->srbar0, | 
					
						
							| 
									
										
										
										
											2012-07-26 17:47:55 +03:00
										 |  |  | 		lower_32_bits(sram_params.sram_offset) & L2SRAM_BAR_MSK_LO18); | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Write bits[18-21] to srbare0 | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | #ifdef CONFIG_PHYS_64BIT
 | 
					
						
							|  |  |  | 	out_be32(&l2ctlr->srbarea0, | 
					
						
							| 
									
										
										
										
											2012-07-26 17:47:55 +03:00
										 |  |  | 		upper_32_bits(sram_params.sram_offset) & L2SRAM_BARE_MSK_HI4); | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	clrsetbits_be32(&l2ctlr->ctl, L2CR_L2E, L2CR_L2FI); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (ways) { | 
					
						
							|  |  |  | 	case LOCK_WAYS_EIGHTH: | 
					
						
							|  |  |  | 		setbits32(&l2ctlr->ctl, | 
					
						
							|  |  |  | 			L2CR_L2E | L2CR_L2FI | L2CR_SRAM_EIGHTH); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case LOCK_WAYS_TWO_EIGHTH: | 
					
						
							|  |  |  | 		setbits32(&l2ctlr->ctl, | 
					
						
							|  |  |  | 			L2CR_L2E | L2CR_L2FI | L2CR_SRAM_QUART); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case LOCK_WAYS_HALF: | 
					
						
							|  |  |  | 		setbits32(&l2ctlr->ctl, | 
					
						
							|  |  |  | 			L2CR_L2E | L2CR_L2FI | L2CR_SRAM_HALF); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case LOCK_WAYS_FULL: | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		setbits32(&l2ctlr->ctl, | 
					
						
							|  |  |  | 			L2CR_L2E | L2CR_L2FI | L2CR_SRAM_FULL); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	eieio(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rval = instantiate_cache_sram(dev, sram_params); | 
					
						
							|  |  |  | 	if (rval < 0) { | 
					
						
							|  |  |  | 		dev_err(&dev->dev, "Can't instantiate Cache-SRAM\n"); | 
					
						
							|  |  |  | 		iounmap(l2ctlr); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-21 14:04:10 -08:00
										 |  |  | static int mpc85xx_l2ctlr_of_remove(struct platform_device *dev) | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | { | 
					
						
							|  |  |  | 	BUG_ON(!l2ctlr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	iounmap(l2ctlr); | 
					
						
							|  |  |  | 	remove_cache_sram(dev); | 
					
						
							|  |  |  | 	dev_info(&dev->dev, "MPC85xx L2 controller unloaded\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-10 21:56:38 +02:00
										 |  |  | static const struct of_device_id mpc85xx_l2ctlr_of_match[] = { | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,p2020-l2-cache-controller", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,p2010-l2-cache-controller", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,p1020-l2-cache-controller", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,p1011-l2-cache-controller", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,p1013-l2-cache-controller", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,p1022-l2-cache-controller", | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2012-02-22 18:20:13 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,mpc8548-l2-cache-controller", | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2012-07-13 10:27:34 +08:00
										 |  |  | 	{	.compatible = "fsl,mpc8544-l2-cache-controller",}, | 
					
						
							|  |  |  | 	{	.compatible = "fsl,mpc8572-l2-cache-controller",}, | 
					
						
							|  |  |  | 	{	.compatible = "fsl,mpc8536-l2-cache-controller",}, | 
					
						
							|  |  |  | 	{	.compatible = "fsl,p1021-l2-cache-controller",}, | 
					
						
							|  |  |  | 	{	.compatible = "fsl,p1012-l2-cache-controller",}, | 
					
						
							|  |  |  | 	{	.compatible = "fsl,p1025-l2-cache-controller",}, | 
					
						
							|  |  |  | 	{	.compatible = "fsl,p1016-l2-cache-controller",}, | 
					
						
							|  |  |  | 	{	.compatible = "fsl,p1024-l2-cache-controller",}, | 
					
						
							|  |  |  | 	{	.compatible = "fsl,p1015-l2-cache-controller",}, | 
					
						
							|  |  |  | 	{	.compatible = "fsl,p1010-l2-cache-controller",}, | 
					
						
							| 
									
										
										
										
											2013-02-19 14:44:21 +05:30
										 |  |  | 	{	.compatible = "fsl,bsc9131-l2-cache-controller",}, | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | 	{}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-22 19:59:54 -07:00
										 |  |  | static struct platform_driver mpc85xx_l2ctlr_of_platform_driver = { | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | 	.driver	= { | 
					
						
							|  |  |  | 		.name		= "fsl-l2ctlr", | 
					
						
							|  |  |  | 		.of_match_table	= mpc85xx_l2ctlr_of_match, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.probe		= mpc85xx_l2ctlr_of_probe, | 
					
						
							| 
									
										
										
										
											2012-12-21 14:04:10 -08:00
										 |  |  | 	.remove		= mpc85xx_l2ctlr_of_remove, | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static __init int mpc85xx_l2ctlr_of_init(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-02-22 19:59:54 -07:00
										 |  |  | 	return platform_driver_register(&mpc85xx_l2ctlr_of_platform_driver); | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __exit mpc85xx_l2ctlr_of_exit(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-02-22 19:59:54 -07:00
										 |  |  | 	platform_driver_unregister(&mpc85xx_l2ctlr_of_platform_driver); | 
					
						
							| 
									
										
										
										
											2010-10-13 17:30:56 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | subsys_initcall(mpc85xx_l2ctlr_of_init); | 
					
						
							|  |  |  | module_exit(mpc85xx_l2ctlr_of_exit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_DESCRIPTION("Freescale MPC85xx L2 controller init"); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL v2"); |