Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | /* * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* */ /* * processor.h: Processor and processor-set definitions. */ #ifndef _KERN_PROCESSOR_H_ #define _KERN_PROCESSOR_H_ /* * Data structures for managing processors and sets of processors. */ #include <mach/boolean.h> #include <mach/kern_return.h> #include <kern/kern_types.h> #include <sys/appleapiopts.h> #ifdef __APPLE_API_PRIVATE #ifdef MACH_KERNEL_PRIVATE #include <cpus.h> #include <mach/mach_types.h> #include <kern/cpu_number.h> #include <kern/lock.h> #include <kern/queue.h> #include <kern/sched.h> #include <machine/ast_types.h> struct processor_set { queue_head_t idle_queue; /* idle processors */ int idle_count; /* how many ? */ queue_head_t active_queue; /* active processors */ queue_head_t processors; /* all processors here */ int processor_count;/* how many ? */ decl_simple_lock_data(,sched_lock) /* lock for above */ struct run_queue runq; /* runq for this set */ queue_head_t tasks; /* tasks assigned */ int task_count; /* how many */ queue_head_t threads; /* threads in this set */ int thread_count; /* how many */ int ref_count; /* structure ref count */ boolean_t active; /* is pset in use */ decl_mutex_data(, lock) /* lock for above */ int timeshare_quanta; /* timeshare quantum factor */ int quantum_factors[NCPUS+1]; struct ipc_port * pset_self; /* port for operations */ struct ipc_port * pset_name_self; /* port for information */ uint32_t run_count; /* threads running in set */ uint32_t share_count; /* timeshare threads running in set */ integer_t mach_factor; /* mach_factor */ integer_t load_average; /* load_average */ uint32_t sched_load; /* load avg for scheduler */ }; struct processor { queue_chain_t processor_queue;/* idle/active/action queue link, * MUST remain the first element */ int state; /* See below */ struct thread *active_thread, /* thread running on processor */ *next_thread, /* next thread to run if dispatched */ *idle_thread; /* this processor's idle thread. */ processor_set_t processor_set; /* current membership */ int current_pri; /* priority of current thread */ timer_call_data_t quantum_timer; /* timer for quantum expiration */ uint64_t quantum_end; /* time when current quantum ends */ uint64_t last_dispatch; /* time of last dispatch */ int timeslice; /* quanta before timeslice ends */ uint64_t deadline; /* current deadline */ struct run_queue runq; /* local runq for this processor */ queue_chain_t processors; /* all processors in set */ decl_simple_lock_data(,lock) struct ipc_port *processor_self;/* port for operations */ int slot_num; /* machine-indep slot number */ }; extern struct processor_set default_pset; extern processor_t master_processor; extern struct processor processor_array[NCPUS]; /* * NOTE: The processor->processor_set link is needed in one of the * scheduler's critical paths. [Figure out where to look for another * thread to run on this processor.] It is accessed without locking. * The following access protocol controls this field. * * Read from own processor - just read. * Read from another processor - lock processor structure during read. * Write from own processor - lock processor structure during write. * Write from another processor - NOT PERMITTED. * */ /* * Processor state locking: * * Values for the processor state are defined below. If the processor * is off-line or being shutdown, then it is only necessary to lock * the processor to change its state. Otherwise it is only necessary * to lock its processor set's sched_lock. Scheduler code will * typically lock only the sched_lock, but processor manipulation code * will often lock both. */ #define PROCESSOR_OFF_LINE 0 /* Not available */ #define PROCESSOR_RUNNING 1 /* Normal execution */ #define PROCESSOR_IDLE 2 /* Idle */ #define PROCESSOR_DISPATCHING 3 /* Dispatching (idle -> running) */ #define PROCESSOR_SHUTDOWN 4 /* Going off-line */ #define PROCESSOR_START 5 /* Being started */ /* * Use processor ptr array to find current processor's data structure. * This replaces a multiplication (index into processor_array) with * an array lookup and a memory reference. It also allows us to save * space if processor numbering gets too sparse. */ extern processor_t processor_ptr[NCPUS]; #define cpu_to_processor(i) (processor_ptr[i]) #define current_processor() (processor_ptr[cpu_number()]) /* Compatibility -- will go away */ #define cpu_state(slot_num) (processor_ptr[slot_num]->state) #define cpu_idle(slot_num) (cpu_state(slot_num) == PROCESSOR_IDLE) /* Useful lock macros */ #define pset_lock(pset) mutex_lock(&(pset)->lock) #define pset_lock_try(pset) mutex_try(&(pset)->lock) #define pset_unlock(pset) mutex_unlock(&(pset)->lock) #define processor_lock(pr) simple_lock(&(pr)->lock) #define processor_unlock(pr) simple_unlock(&(pr)->lock) extern void pset_sys_bootstrap(void); #define timeshare_quanta_update(pset) \ MACRO_BEGIN \ int proc_count = (pset)->processor_count; \ int runq_count = (pset)->runq.count; \ \ (pset)->timeshare_quanta = (pset)->quantum_factors[ \ (runq_count > proc_count)? \ proc_count: runq_count]; \ MACRO_END #define pset_run_incr(pset) \ hw_atomic_add(&(pset)->run_count, 1) #define pset_run_decr(pset) \ hw_atomic_sub(&(pset)->run_count, 1) #define pset_share_incr(pset) \ hw_atomic_add(&(pset)->share_count, 1) #define pset_share_decr(pset) \ hw_atomic_sub(&(pset)->share_count, 1) extern void cpu_up( int cpu); extern kern_return_t processor_shutdown( processor_t processor); extern void pset_remove_processor( processor_set_t pset, processor_t processor); extern void pset_add_processor( processor_set_t pset, processor_t processor); extern void pset_remove_task( processor_set_t pset, task_t task); extern void pset_add_task( processor_set_t pset, task_t task); extern void pset_remove_thread( processor_set_t pset, thread_t thread); extern void pset_add_thread( processor_set_t pset, thread_t thread); extern void thread_change_psets( thread_t thread, processor_set_t old_pset, processor_set_t new_pset); extern kern_return_t processor_assign( processor_t processor, processor_set_t new_pset, boolean_t wait); extern kern_return_t processor_info_count( processor_flavor_t flavor, mach_msg_type_number_t *count); #endif /* MACH_KERNEL_PRIVATE */ extern kern_return_t processor_start( processor_t processor); extern kern_return_t processor_exit( processor_t processor); #endif /* __APPLE_API_PRIVATE */ extern void pset_deallocate( processor_set_t pset); extern void pset_reference( processor_set_t pset); #endif /* _KERN_PROCESSOR_H_ */ |