Changeset 683 for trunk/kernel/kern/cluster.c
- Timestamp:
- Jan 13, 2021, 12:36:17 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/cluster.c
r669 r683 2 2 * cluster.c - Cluster-Manager related operations 3 3 * 4 * Author Ghassan Almaless (2008,2009,2010,2011,2012)4 * Author Ghassan Almaless (2008,2009,2010,2011,2012) 5 5 * Mohamed Lamine Karaoui (2015) 6 * Alain Greiner (2016,2017,2018,2019,2020)6 * Alain Greiner (2016,2017,2018,2019,2020) 7 7 * 8 8 * Copyright (c) UPMC Sorbonne Universites … … 74 74 cluster->y_size = info->y_size; 75 75 cluster->io_cxy = info->io_cxy; 76 cluster->sys_clk = info->sys_clk; 76 77 77 78 // initialize the cluster_info[][] array … … 177 178 printk("\n[%s] PPM initialized in cluster %x / cycle %d\n", 178 179 __FUNCTION__ , local_cxy , cycle ); 179 #endif180 181 // initialises embedded KHM182 khm_init( &cluster->khm );183 184 #if( DEBUG_CLUSTER_INIT & 1 )185 cycle = (uint32_t)hal_get_cycles();186 if( DEBUG_CLUSTER_INIT < cycle )187 printk("\n[%s] KHM initialized in cluster %x at cycle %d\n",188 __FUNCTION__ , local_cxy , hal_get_cycles() );189 180 #endif 190 181
Note: See TracChangeset
for help on using the changeset viewer.