| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * pcie_host.c | 
					
						
							|  |  |  |  * utility functions for pci express host bridge. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2009 Isaku Yamahata <yamahata at valinux co jp> | 
					
						
							|  |  |  |  *                    VA Linux Systems Japan K.K. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2010-03-07 15:48:43 +00:00
										 |  |  |  * with this program; if not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:15 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-12 23:05:42 +02:00
										 |  |  | #include "hw/hw.h"
 | 
					
						
							|  |  |  | #include "hw/pci/pci.h"
 | 
					
						
							|  |  |  | #include "hw/pci/pcie_host.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:19:49 +01:00
										 |  |  | #include "exec/address-spaces.h"
 | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* a helper function to get a PCIDevice for a given mmconfig address */ | 
					
						
							| 
									
										
										
										
											2009-11-12 13:17:23 +02:00
										 |  |  | static inline PCIDevice *pcie_dev_find_by_mmcfg_addr(PCIBus *s, | 
					
						
							|  |  |  |                                                      uint32_t mmcfg_addr) | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | { | 
					
						
							|  |  |  |     return pci_find_device(s, PCIE_MMCFG_BUS(mmcfg_addr), | 
					
						
							| 
									
										
										
										
											2011-01-27 15:56:36 +09:00
										 |  |  |                            PCIE_MMCFG_DEVFN(mmcfg_addr)); | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static void pcie_mmcfg_data_write(void *opaque, hwaddr mmcfg_addr, | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:25 +03:00
										 |  |  |                                   uint64_t val, unsigned len) | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:25 +03:00
										 |  |  |     PCIExpressHost *e = opaque; | 
					
						
							|  |  |  |     PCIBus *s = e->pci.bus; | 
					
						
							| 
									
										
										
										
											2009-11-12 13:17:23 +02:00
										 |  |  |     PCIDevice *pci_dev = pcie_dev_find_by_mmcfg_addr(s, mmcfg_addr); | 
					
						
							| 
									
										
										
										
											2011-07-29 10:01:43 +09:00
										 |  |  |     uint32_t addr; | 
					
						
							|  |  |  |     uint32_t limit; | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-22 11:05:01 +02:00
										 |  |  |     if (!pci_dev) { | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2011-07-22 11:05:01 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-07-29 10:01:43 +09:00
										 |  |  |     addr = PCIE_MMCFG_CONFOFFSET(mmcfg_addr); | 
					
						
							|  |  |  |     limit = pci_config_size(pci_dev); | 
					
						
							|  |  |  |     if (limit <= addr) { | 
					
						
							|  |  |  |         /* conventional pci device can be behind pcie-to-pci bridge.
 | 
					
						
							|  |  |  |            256 <= addr < 4K has no effects. */ | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     pci_host_config_write_common(pci_dev, addr, limit, val, len); | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:25 +03:00
										 |  |  | static uint64_t pcie_mmcfg_data_read(void *opaque, | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |                                      hwaddr mmcfg_addr, | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:25 +03:00
										 |  |  |                                      unsigned len) | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:25 +03:00
										 |  |  |     PCIExpressHost *e = opaque; | 
					
						
							|  |  |  |     PCIBus *s = e->pci.bus; | 
					
						
							| 
									
										
										
										
											2011-07-29 10:01:43 +09:00
										 |  |  |     PCIDevice *pci_dev = pcie_dev_find_by_mmcfg_addr(s, mmcfg_addr); | 
					
						
							|  |  |  |     uint32_t addr; | 
					
						
							|  |  |  |     uint32_t limit; | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!pci_dev) { | 
					
						
							| 
									
										
										
										
											2009-11-12 14:58:31 +09:00
										 |  |  |         return ~0x0; | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-07-29 10:01:43 +09:00
										 |  |  |     addr = PCIE_MMCFG_CONFOFFSET(mmcfg_addr); | 
					
						
							|  |  |  |     limit = pci_config_size(pci_dev); | 
					
						
							|  |  |  |     if (limit <= addr) { | 
					
						
							|  |  |  |         /* conventional pci device can be behind pcie-to-pci bridge.
 | 
					
						
							|  |  |  |            256 <= addr < 4K has no effects. */ | 
					
						
							|  |  |  |         return ~0x0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return pci_host_config_read_common(pci_dev, addr, limit, len); | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:25 +03:00
										 |  |  | static const MemoryRegionOps pcie_mmcfg_ops = { | 
					
						
							|  |  |  |     .read = pcie_mmcfg_data_read, | 
					
						
							|  |  |  |     .write = pcie_mmcfg_data_write, | 
					
						
							| 
									
										
										
										
											2017-08-15 15:44:17 +01:00
										 |  |  |     .endianness = DEVICE_LITTLE_ENDIAN, | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 17:26:51 +02:00
										 |  |  | static void pcie_host_init(Object *obj) | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-04-24 17:26:51 +02:00
										 |  |  |     PCIExpressHost *e = PCIE_HOST_BRIDGE(obj); | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 17:26:51 +02:00
										 |  |  |     e->base_addr = PCIE_BASE_ADDR_UNMAPPED; | 
					
						
							| 
									
										
										
										
											2015-01-28 11:18:58 +01:00
										 |  |  |     memory_region_init_io(&e->mmio, OBJECT(e), &pcie_mmcfg_ops, e, "pcie-mmcfg-mmio", | 
					
						
							|  |  |  |                           PCIE_MMCFG_SIZE_MAX); | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void pcie_host_mmcfg_unmap(PCIExpressHost *e) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (e->base_addr != PCIE_BASE_ADDR_UNMAPPED) { | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:25 +03:00
										 |  |  |         memory_region_del_subregion(get_system_memory(), &e->mmio); | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  |         e->base_addr = PCIE_BASE_ADDR_UNMAPPED; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-06 17:03:08 +01:00
										 |  |  | void pcie_host_mmcfg_init(PCIExpressHost *e, uint32_t size) | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-10-19 16:43:32 -04:00
										 |  |  |     assert(!(size & (size - 1)));       /* power of 2 */ | 
					
						
							|  |  |  |     assert(size >= PCIE_MMCFG_SIZE_MIN); | 
					
						
							|  |  |  |     assert(size <= PCIE_MMCFG_SIZE_MAX); | 
					
						
							|  |  |  |     e->size = size; | 
					
						
							| 
									
										
										
										
											2015-01-28 11:18:58 +01:00
										 |  |  |     memory_region_set_size(&e->mmio, e->size); | 
					
						
							| 
									
										
										
										
											2015-01-06 17:03:08 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void pcie_host_mmcfg_map(PCIExpressHost *e, hwaddr addr, | 
					
						
							|  |  |  |                          uint32_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     pcie_host_mmcfg_init(e, size); | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  |     e->base_addr = addr; | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:25 +03:00
										 |  |  |     memory_region_add_subregion(get_system_memory(), e->base_addr, &e->mmio); | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void pcie_host_mmcfg_update(PCIExpressHost *e, | 
					
						
							|  |  |  |                             int enable, | 
					
						
							| 
									
										
										
										
											2012-10-19 16:43:32 -04:00
										 |  |  |                             hwaddr addr, | 
					
						
							|  |  |  |                             uint32_t size) | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-28 11:18:58 +01:00
										 |  |  |     memory_region_transaction_begin(); | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  |     pcie_host_mmcfg_unmap(e); | 
					
						
							|  |  |  |     if (enable) { | 
					
						
							| 
									
										
										
										
											2012-10-19 16:43:32 -04:00
										 |  |  |         pcie_host_mmcfg_map(e, addr, size); | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-28 11:18:58 +01:00
										 |  |  |     memory_region_transaction_commit(); | 
					
						
							| 
									
										
										
										
											2009-10-30 21:21:18 +09:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-10-19 16:43:33 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const TypeInfo pcie_host_type_info = { | 
					
						
							|  |  |  |     .name = TYPE_PCIE_HOST_BRIDGE, | 
					
						
							|  |  |  |     .parent = TYPE_PCI_HOST_BRIDGE, | 
					
						
							|  |  |  |     .abstract = true, | 
					
						
							|  |  |  |     .instance_size = sizeof(PCIExpressHost), | 
					
						
							| 
									
										
										
										
											2014-04-24 17:26:51 +02:00
										 |  |  |     .instance_init = pcie_host_init, | 
					
						
							| 
									
										
										
										
											2012-10-19 16:43:33 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pcie_host_register_types(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     type_register_static(&pcie_host_type_info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type_init(pcie_host_register_types) |