⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pci2.c

📁 eCos1.31版
💻 C
字号:
//==========================================================================////        pci2.c////        Test PCI library's resource allocation.////==========================================================================//####COPYRIGHTBEGIN####//                                                                          // -------------------------------------------                              // The contents of this file are subject to the Red Hat eCos Public License // Version 1.1 (the "License"); you may not use this file except in         // compliance with the License.  You may obtain a copy of the License at    // http://www.redhat.com/                                                   //                                                                          // Software distributed under the License is distributed on an "AS IS"      // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the // License for the specific language governing rights and limitations under // the License.                                                             //                                                                          // The Original Code is eCos - Embedded Configurable Operating System,      // released September 30, 1998.                                             //                                                                          // The Initial Developer of the Original Code is Red Hat.                   // Portions created by Red Hat are                                          // Copyright (C) 1998, 1999, 2000 Red Hat, Inc.                             // All Rights Reserved.                                                     // -------------------------------------------                              //                                                                          //####COPYRIGHTEND####//==========================================================================//#####DESCRIPTIONBEGIN####//// Author(s):     jskov// Contributors:  jskov// Date:          1999-03-17// Description: Simple test that prints out information about found//              PCI devices. Entirely passive - no configuration happens.// //####DESCRIPTIONEND#####include <pkgconf/system.h>#include <cyg/infra/diag.h>             // diag_printf#include <cyg/infra/testcase.h>         // test macros#include <cyg/infra/cyg_ass.h>          // assertion macros// Package requirements#if defined(CYGPKG_IO_PCI) && defined(CYGPKG_KERNEL)#include <pkgconf/kernel.h>#include <pkgconf/io_pci.h>#include <cyg/io/pci.h>#include <cyg/hal/hal_arch.h>// Package option requirements#if defined(CYGFUN_KERNEL_API_C) && defined(CYG_PCI_PRESENT)#include <cyg/kernel/kapi.h>unsigned char stack[CYGNUM_HAL_STACK_SIZE_TYPICAL];cyg_thread thread_data;cyg_handle_t thread_handle;voidpci_test( void ){    cyg_pci_device dev_info;    CYG_PCI_ADDRESS64 mem_base;    CYG_PCI_ADDRESS64 mem_assigned_addr;    CYG_PCI_ADDRESS32 io_base;    CYG_PCI_ADDRESS32 io_assigned_addr;    // Verify that space type requests are checked.    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_IO;    CYG_TEST_CHECK(!cyg_pci_allocate_memory_priv(&dev_info, 0, &mem_base,                                                  &mem_assigned_addr),                   "cyg_pci_allocate_memory_priv accepted IO request");    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_MEM;    CYG_TEST_CHECK(!cyg_pci_allocate_io_priv(&dev_info, 0, &io_base,                                              &io_assigned_addr),                   "cyg_pci_allocate_io_priv accepted MEM request");    // Check allocation and alignment of IO space    io_base = 0x0000;    // Size 4    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_IO | 0xfffffffc;    CYG_TEST_CHECK(cyg_pci_allocate_io_priv(&dev_info, 0, &io_base,                                             &io_assigned_addr),                   "cyg_pci_allocate_io_priv(4) failed");    CYG_TEST_CHECK(0x0004 == io_base,                    "cyg_pci_allocate_io_priv(4) size failed");    CYG_TEST_CHECK(0x0000 == io_assigned_addr,                   "cyg_pci_allocate_io_priv(4) align failed");    // Size 8 (alignment required)    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_IO | 0xfffffff8;    CYG_TEST_CHECK(cyg_pci_allocate_io_priv(&dev_info, 0, &io_base,                                             &io_assigned_addr),                   "cyg_pci_allocate_io_priv(8) failed");    CYG_TEST_CHECK(0x0010 == io_base,                    "cyg_pci_allocate_io_priv(8) size failed");    CYG_TEST_CHECK(0x0008 == io_assigned_addr,                   "cyg_pci_allocate_io_priv(8) align failed");    // Size 16 (no alignment required)    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_IO | 0xfffffff0;    CYG_TEST_CHECK(cyg_pci_allocate_io_priv(&dev_info, 0, &io_base,                                             &io_assigned_addr),                   "cyg_pci_allocate_io_priv(16) failed");    CYG_TEST_CHECK(0x0020 == io_base,                    "cyg_pci_allocate_io_priv(16) size failed");    CYG_TEST_CHECK(0x0010 == io_assigned_addr,                   "cyg_pci_allocate_io_priv(16) align failed");    // Size 64 (alignment required)    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_IO | 0xffffffc0;    CYG_TEST_CHECK(cyg_pci_allocate_io_priv(&dev_info, 0, &io_base,                                            &io_assigned_addr),                   "cyg_pci_allocate_io_priv(64) failed");    CYG_TEST_CHECK(0x0080 == io_base,                   "cyg_pci_allocate_io_priv(64) size failed");    CYG_TEST_CHECK(0x0040 == io_assigned_addr,                   "cyg_pci_allocate_io_priv(64) align failed");    // Size 256 (alignment required)    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_IO | 0xffffff00;    CYG_TEST_CHECK(cyg_pci_allocate_io_priv(&dev_info, 0, &io_base,                                            &io_assigned_addr),                   "cyg_pci_allocate_io_priv(256) failed");    CYG_TEST_CHECK(0x0200 == io_base,                    "cyg_pci_allocate_io_priv(256) size failed");    CYG_TEST_CHECK(0x0100 == io_assigned_addr,                   "cyg_pci_allocate_io_priv(256) align failed");    // Check IO space limit    io_base = 0x100000-0x80;    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_IO | 0xffffff00;    CYG_TEST_CHECK(!cyg_pci_allocate_io_priv(&dev_info, 0, &io_base,                                             &io_assigned_addr),                   "cyg_pci_allocate_io_priv overflow");    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_IO | 0xffffff80;    CYG_TEST_CHECK(cyg_pci_allocate_io_priv(&dev_info, 0, &io_base,                                            &io_assigned_addr),                   "cyg_pci_allocate_io_priv overflow (on limit)");    // Check allocation and alignment of MEM space    mem_base = 0x00000000;    // Size 16 (no alignment required)    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_MEM | 0xfffffff0;    CYG_TEST_CHECK(cyg_pci_allocate_memory_priv(&dev_info, 0, &mem_base,                                                 &mem_assigned_addr),                   "cyg_pci_allocate_memory_priv(16) failed");    CYG_TEST_CHECK(0x00000010 == mem_base,                    "cyg_pci_allocate_memory_priv(16) size failed");    CYG_TEST_CHECK(0x00000000 == mem_assigned_addr,                   "cyg_pci_allocate_memory_priv(16) align failed");    // Size 64 (alignment required - <1MB)    dev_info.base_size[0] = (CYG_PCI_CFG_BAR_SPACE_MEM                              | CYG_PRI_CFG_BAR_MEM_TYPE_1M                             | 0xffffffc0);    CYG_TEST_CHECK(cyg_pci_allocate_memory_priv(&dev_info, 0, &mem_base,                                                 &mem_assigned_addr),                   "cyg_pci_allocate_memory_priv(64/<1MB) failed");    CYG_TEST_CHECK(0x00000080 == mem_base,                    "cyg_pci_allocate_memory_priv(64/<1MB) size failed");    CYG_TEST_CHECK(0x00000040 == mem_assigned_addr,                   "cyg_pci_allocate_memory_priv(64/<1MB) align failed");    // Size 1MB (alignment required)    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_MEM | 0xfff00000;    CYG_TEST_CHECK(cyg_pci_allocate_memory_priv(&dev_info, 0, &mem_base,                                                 &mem_assigned_addr),                   "cyg_pci_allocate_memory_priv(1MB) failed");    CYG_TEST_CHECK(0x00200000 == mem_base,                    "cyg_pci_allocate_memory_priv(1MB) size failed");    CYG_TEST_CHECK(0x00100000 == mem_assigned_addr,                   "cyg_pci_allocate_memory_priv(1MB) align failed");    // Size 16MB (alignment required)    dev_info.base_size[0] = CYG_PCI_CFG_BAR_SPACE_MEM | 0xff000000;    CYG_TEST_CHECK(cyg_pci_allocate_memory_priv(&dev_info, 0, &mem_base,                                                 &mem_assigned_addr),                   "cyg_pci_allocate_memory_priv(16MB) failed");    CYG_TEST_CHECK(0x02000000 == mem_base,                    "cyg_pci_allocate_memory_priv(16MB) size failed");    CYG_TEST_CHECK(0x01000000 == mem_assigned_addr,                   "cyg_pci_allocate_memory_priv(16MB) align failed");    // Size 32 (no alignment required - <1MB - FAILS!)    // Note: When more clever allocation has been made for the bottom    // 1MB of PCI memory space, this test needs to be made more elaborate.    dev_info.base_size[0] = (CYG_PCI_CFG_BAR_SPACE_MEM                              | CYG_PRI_CFG_BAR_MEM_TYPE_1M                             | 0xffffffe0);    CYG_TEST_CHECK(!cyg_pci_allocate_memory_priv(&dev_info, 0, &mem_base,                                                  &mem_assigned_addr),                 "cyg_pci_allocate_memory_priv(32/<1MB) unexpectedly worked!");        // TBD: Check 64bit MEM allocation.    CYG_TEST_PASS_FINISH("pci2 test OK");}voidcyg_start(void){    CYG_TEST_INIT();    cyg_thread_create(10,                   // Priority - just a number                      (cyg_thread_entry_t*)pci_test,         // entry                      0,                    //                       "pci_thread",     // Name                      &stack[0],            // Stack                      CYGNUM_HAL_STACK_SIZE_TYPICAL,           // Size                      &thread_handle,       // Handle                      &thread_data          // Thread data structure        );    cyg_thread_resume(thread_handle);    cyg_scheduler_start();}#else // CYGFUN_KERNEL_API_C && CYG_PCI_PRESENT#define N_A_MSG "Needs kernel C API & PCI platform support"#endif#else // CYGPKG_IO_PCI && CYGPKG_KERNEL#define N_A_MSG "Needs IO/PCI and Kernel"#endif#ifdef N_A_MSGvoidcyg_start( void ){    CYG_TEST_INIT();    CYG_TEST_NA( N_A_MSG);}#endif // N_A_MSG// EOF pci1.c

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -